/* =========================================================
   GutVitali — Custom Stylesheet
   Replicates Mobirise classes WITHOUT Mobirise CSS dependencies
   - Each title section (header3) renders on a BLUE background
   - Same Roboto Condensed font throughout
   - Clean Bootstrap 5 base
   ========================================================= */

:root {
    --gv-primary:    #1862c6;     /* main blue */
    --gv-primary-d:  #0d4f8b;     /* darker blue */
    --gv-warning:    #f5b400;     /* CTA gold */
    --gv-warning-d:  #d99c00;
    --gv-text:       #232323;
    --gv-text-soft:  #4f5460;
    --gv-muted:      #6f7689;
    --gv-bg-soft:    #f5f7fb;
    --gv-border:     #e2e6ee;
    --gv-success:    #2cb673;
}

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

/* =========================================================
   BASE TYPOGRAPHY (replaces Mobirise mbr-fonts-style)
   ========================================================= */
body {
    font-family: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--gv-text);
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}
.mbr-fonts-style {
    font-family: 'Roboto Condensed', sans-serif;
}
p { font-family: 'Roboto Condensed', sans-serif; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

/* =========================================================
   MOBIRISE DISPLAY UTILITIES (display-1 through display-7)
   ========================================================= */
.display-1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
}
.display-2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
}
.display-3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
}
.display-4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
}
.display-5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}
.display-7 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
}

@media (max-width: 991px) {
    .display-1 { font-size: 2.1rem; }
    .display-2 { font-size: 1.6rem; }
    .display-5 { font-size: 1.25rem; }
}
@media (max-width: 576px) {
    .display-1 { font-size: 1.6rem; }
    .display-2 { font-size: 1.3rem; }
    .display-5 { font-size: 1.15rem; }
}

/* =========================================================
   GENERIC MOBIRISE HELPERS
   ========================================================= */
.align-center { text-align: center; }
.text-primary { color: var(--gv-primary) !important; }
.text-white { color: #fff !important; }
.text-black { color: #1a1a1a !important; }
.mbr-black { color: #1a1a1a; }

.mbr-text { color: var(--gv-text); }
.mbr-section-title { color: var(--gv-text); }
.mbr-section-subtitle { color: var(--gv-text); }

img { max-width: 100%; height: auto; }
a { transition: color 0.2s ease; }
.w-100 { width: 100%; }

/* Mobirise icon font reset (we use Bootstrap Icons instead) */
.mbr-iconfont { font-style: normal; }
.mbr-iconfont-btn { margin-right: 0.4rem; }

/* =========================================================
   BUTTONS — match Mobirise btn-warning style
   ========================================================= */
.btn {
    border-radius: 50px;
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    transition: all 0.25s ease;
    border-width: 2px;
}
.btn-warning {
    background: var(--gv-warning);
    border-color: var(--gv-warning);
    color: #1a1a1a;
}
.btn-warning:hover, .btn-warning:focus {
    background: var(--gv-warning-d);
    border-color: var(--gv-warning-d);
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(245, 180, 0, 0.35);
}
.mbr-section-btn { display: inline-block; }
.navbar-buttons.mbr-section-btn { display: flex; }

/* =========================================================
   NAVBAR (menu menu2) — sticky, clean, proper
   ========================================================= */
.menu.menu2 {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
}
.navbar-fixed-top {
    background: #fff;
    border-bottom: 1px solid var(--gv-border);
    padding: 0.85rem 0;
    box-shadow: 0 2px 8px rgba(13, 79, 139, 0.06);
    transition: box-shadow 0.25s ease;
}
.navbar-fixed-top.scrolled {
    box-shadow: 0 4px 14px rgba(13, 79, 139, 0.12);
}

.navbar-fixed-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar-brand {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}
.navbar-brand .navbar-caption {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.65rem !important;
    color: var(--gv-primary) !important;
    text-decoration: none;
    letter-spacing: -0.5px;
    line-height: 1;
}
.navbar-brand .navbar-caption:hover { color: var(--gv-primary-d) !important; }

.navbar-collapse {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.navbar-nav.nav-dropdown {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item .nav-link {
    color: var(--gv-text) !important;
    font-weight: 600;
    padding: 0.5rem 0.85rem !important;
    font-size: 0.95rem !important;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}
.nav-item .nav-link:hover {
    color: var(--gv-primary) !important;
    background: rgba(24, 98, 198, 0.06);
}
.nav-item .nav-link.active {
    color: var(--gv-primary) !important;
}
.nav-item .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--gv-primary);
    border-radius: 2px;
}

/* Hamburger (mobile only) */
.navbar-toggler {
    display: none;
    border: none;
    background: transparent;
    padding: 0.5rem;
    cursor: pointer;
}
.navbar-toggler:focus { box-shadow: none; outline: none; }
.hamburger {
    width: 26px;
    height: 22px;
    position: relative;
    display: block;
}
.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--gv-primary);
    border-radius: 2px;
    left: 0;
    transition: 0.25s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2), .hamburger span:nth-child(3) { top: 9px; }
.hamburger span:nth-child(4) { top: 18px; }

/* Active state animation */
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1),
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(4) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) { transform: rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) { transform: rotate(-45deg); }

.navbar-buttons.mbr-section-btn {
    display: flex;
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.navbar-buttons .btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.92rem;
}

@media (max-width: 1199px) {
    .nav-item .nav-link { padding: 0.5rem 0.65rem !important; font-size: 0.9rem !important; }
}

@media (max-width: 991px) {
    .navbar-toggler { display: block; }
    .navbar-fixed-top .container { flex-wrap: wrap; }

    .navbar-collapse {
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin-top: 0.5rem;
    }
    .navbar-collapse.show {
        max-height: 600px;
        opacity: 1;
        padding: 0.85rem 0 0.25rem;
        border-top: 1px solid var(--gv-border);
    }
    .navbar-nav.nav-dropdown {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .navbar-nav.nav-dropdown .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gv-border);
    }
    .navbar-nav.nav-dropdown .nav-item:last-child { border-bottom: none; }
    .nav-item .nav-link {
        padding: 0.85rem 0.5rem !important;
        font-size: 1rem !important;
        border-radius: 0;
    }
    .nav-item .nav-link:hover { background: var(--gv-bg-soft); }
    .nav-item .nav-link.active::after { display: none; }
    .navbar-buttons.mbr-section-btn {
        margin: 0.85rem 0 0.25rem;
        width: 100%;
    }
    .navbar-buttons .btn { width: 100%; padding: 0.75rem 1rem; }
}

/* =========================================================
   HEADER3 — TITLE SECTIONS (BLUE background)
   Each "title only" section gets its own dedicated blue band
   ========================================================= */
.header3 {
    background: linear-gradient(90deg, var(--gv-primary) 0%, #2477da 50%, var(--gv-primary) 100%);
    padding: 2.5rem 0;
    position: relative;
}
.header3 .mbr-section-subtitle {
    color: #ffffff !important;
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    letter-spacing: -0.3px;
}
.header3 .mbr-section-subtitle::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    margin: 0.85rem auto 0;
}
@media (max-width: 768px) {
    .header3 { padding: 1.75rem 0; }
    .header3 .mbr-section-subtitle { font-size: 1.4rem; }
}

/* =========================================================
   HEADER11 — Hero / Image+Text rows
   ========================================================= */
.header11 {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f4f8fc 0%, #e8f1fa 100%);
}
.header11 + .header11,
.header3 + .header11 {
    background: #ffffff;
}
.header11 .image-wrapper img {
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(13, 79, 139, 0.15);
}
.header11 .text-wrapper {
    padding: 0 1rem;
}
.header11 h1.mbr-section-title {
    color: var(--gv-primary-d);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

/* =========================================================
   GALLERY3 — Trust badges row
   ========================================================= */
.gallery3 {
    padding: 3rem 0;
    background-color: var(--gv-bg-soft);
}
.gallery3 .item {
    margin-bottom: 1.5rem;
}
.gallery3 .item-wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--gv-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery3 .item-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(13, 79, 139, 0.10);
}
.gallery3 .item-img img {
    max-height: 100px;
    margin: 0 auto 1rem;
    object-fit: contain;
    display: block;
}
.gallery3 .item-title {
    color: var(--gv-primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.gallery3 .item-content p {
    font-size: 0.95rem;
    color: var(--gv-text-soft);
    margin: 0;
}

/* =========================================================
   CONTENT4 — Centered text content
   ========================================================= */
.content4 {
    padding: 2.75rem 0;
    background: #fff;
}
.content4 .mbr-section-title {
    color: var(--gv-text);
    font-weight: 800;
    margin-bottom: 1rem;
}
.content4 .mbr-section-subtitle {
    color: var(--gv-text-soft);
    line-height: 1.75;
}

/* =========================================================
   CONTENT5 — Section content with subtitle + text
   ========================================================= */
.content5 {
    padding: 2.5rem 0;
    background: #fff;
}
.content5 .mbr-section-subtitle {
    color: var(--gv-text);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.55;
}
.content5 .mbr-text {
    color: var(--gv-text-soft);
}

/* =========================================================
   TEAM1 — Pricing cards (proper Vivalis-style)
   ========================================================= */
.team1 {
    padding: 2.5rem 0 3rem;
    background: #fff;
}
.team1.pricing-block {
    background: linear-gradient(180deg, var(--gv-bg-soft) 0%, #fff 100%);
    padding: 3rem 0 3.5rem;
}

.price-card {
    background: #fff;
    border: 2px solid var(--gv-border);
    border-radius: 18px;
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 28px rgba(13, 79, 139, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px rgba(13, 79, 139, 0.15);
    border-color: var(--gv-primary);
}

.price-card.best-value {
    border-color: var(--gv-primary);
    border-width: 3px;
    transform: scale(1.04);
    box-shadow: 0 18px 38px rgba(24, 98, 198, 0.22);
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.price-card.best-value:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 24px 48px rgba(24, 98, 198, 0.28);
}

.best-flag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gv-warning) 0%, #ff9933 100%);
    color: #1a1a1a;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 14px rgba(245, 180, 0, 0.4);
    white-space: nowrap;
}

.price-head {
    margin-bottom: 0.85rem;
}
.price-pack {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gv-primary-d);
    margin: 0;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.price-supply {
    font-size: 0.82rem;
    color: var(--gv-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 0.25rem;
}

.price-img-wrap {
    margin: 0.5rem 0 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.price-img-wrap img {
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(13, 79, 139, 0.18));
    transition: transform 0.3s ease;
}
.price-card:hover .price-img-wrap img {
    transform: translateY(-4px);
}

.price-tag {
    margin: 0.5rem 0 0.85rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
}
.price-now {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gv-primary);
    line-height: 1;
    font-family: 'Roboto Condensed', sans-serif;
}
.best-value .price-now { color: var(--gv-primary); }
.price-per {
    color: var(--gv-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.price-totals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem 0.85rem;
    background: var(--gv-bg-soft);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    flex-wrap: wrap;
}
.price-totals .strike {
    text-decoration: line-through;
    color: var(--gv-muted);
    font-weight: 500;
}
.price-totals .now {
    color: var(--gv-primary-d);
    font-weight: 800;
}

.price-cta {
    width: 100%;
    padding: 0.85rem 1rem !important;
    font-size: 1rem !important;
    margin-top: auto;
}

.price-perks {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--gv-border);
    font-size: 0.85rem;
    color: var(--gv-text-soft);
    font-weight: 600;
}

.price-foot {
    color: var(--gv-text-soft);
    font-size: 0.95rem !important;
    margin: 0;
}
.price-foot strong { color: var(--gv-primary-d); }

@media (max-width: 991px) {
    .price-card.best-value {
        transform: none;
    }
    .price-card.best-value:hover {
        transform: translateY(-6px);
    }
    .price-card { padding: 1.5rem 1.25rem 1.25rem; }
    .price-now { font-size: 2.4rem; }
    .price-img-wrap { min-height: 160px; }
    .price-img-wrap img { max-height: 180px; }
}

/* =========================================================
   TEAM2 — Review cards (horizontal)
   ========================================================= */
.team2 {
    padding: 1.5rem 0 3rem;
    background: #fff;
}
.team2 .card {
    background: var(--gv-bg-soft);
    border: 1px solid var(--gv-border);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(13, 79, 139, 0.05);
    transition: box-shadow 0.25s ease;
}
.team2 .card:hover {
    box-shadow: 0 10px 24px rgba(13, 79, 139, 0.10);
}
.team2 .image-wrapper img {
    width: 100%;
    max-width: 130px;
    border-radius: 50%;
    border: 3px solid var(--gv-primary);
    padding: 3px;
    background: #fff;
    margin: 0 auto;
    display: block;
}
.team2 .card-box {
    padding-left: 1rem;
}
.team2 .card-title {
    color: var(--gv-primary);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.team2 .card-subtitle {
    color: var(--gv-warning-d);
    font-weight: 600;
}
.team2 .mbr-text {
    color: var(--gv-text-soft);
    font-style: italic;
}
@media (max-width: 767px) {
    .team2 .card-box { padding-left: 0; padding-top: 1rem; text-align: center; }
}

/* =========================================================
   IMAGE3 — Centered image
   ========================================================= */
.image3 {
    padding: 1.75rem 0;
    background: #fff;
}
.image3 .image-wrapper {
    text-align: center;
}
.image3 .image-wrapper img {
    max-width: 100%;
}

/* =========================================================
   FEATURES19 — Numbered ingredients list
   ========================================================= */
.features19 {
    padding: 2rem 0 3rem;
    background: #fff;
}
.features19 .item.mbr-flex {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid var(--gv-border);
    border-left: 4px solid var(--gv-primary);
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(13, 79, 139, 0.04);
    transition: box-shadow 0.25s ease, border-left-width 0.25s ease;
}
.features19 .item.mbr-flex:hover {
    box-shadow: 0 8px 18px rgba(13, 79, 139, 0.10);
    border-left-width: 6px;
}
.features19 .icon-box {
    flex-shrink: 0;
}
.features19 .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gv-primary) 0%, #2477da 100%);
    color: #fff !important;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(24, 98, 198, 0.30);
}
.features19 .icon-title {
    color: var(--gv-primary) !important;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.features19 .icon-text {
    color: var(--gv-text-soft) !important;
    font-weight: 400 !important;
    margin: 0;
    line-height: 1.65;
}
@media (max-width: 576px) {
    .features19 .item.mbr-flex { flex-direction: column; gap: 0.75rem; padding: 1.1rem 1.15rem; }
    .features19 .step-number { width: 42px; height: 42px; font-size: 1.15rem; }
}

/* =========================================================
   FEATURES23 — Scientifically Formulated 3-card row
   ========================================================= */
.features23 {
    padding: 3rem 0;
    background: var(--gv-bg-soft);
}
.features23 .card-title {
    color: var(--gv-text);
    margin-bottom: 1.25rem;
    font-weight: 800;
}
.features23 .item.mbr-flex {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem !important;
    margin-bottom: 1rem;
    border: 1px solid var(--gv-border);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.features23 .item.mbr-flex:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(13, 79, 139, 0.10);
}
.features23 .icon-wrap { flex-shrink: 0; width: auto !important; }
.features23 .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gv-primary);
    color: #fff !important;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
}
.features23 .icon-title {
    color: var(--gv-primary) !important;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.features23 .mbr-text {
    color: var(--gv-text-soft) !important;
    font-weight: 400 !important;
    margin: 0;
    font-size: 0.97rem;
}

/* =========================================================
   FEATURES16 — Guarantee card
   ========================================================= */
.features16 {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fff 0%, #fff8e6 100%);
    border-top: 1px solid var(--gv-border);
    border-bottom: 1px solid var(--gv-border);
}
.features16 .image-wrapper { text-align: center; }
.features16 .image-wrapper img { max-width: 240px; }
.features16 .card-title {
    color: var(--gv-primary-d);
    font-weight: 800;
    margin-bottom: 1rem;
}
.features16 .mbr-text {
    color: var(--gv-text-soft);
}

/* =========================================================
   CONTENT8 — Benefits with bullet list
   ========================================================= */
.content8 {
    padding: 3rem 0;
    background: #fff;
}
.content8 .mbr-section-title {
    color: var(--gv-text-soft);
    font-weight: 500;
    line-height: 1.7;
}
.content8 ul {
    padding-left: 1.4rem;
    margin: 0;
}
.content8 ul li {
    margin-bottom: 0.85rem;
    color: var(--gv-text-soft);
    line-height: 1.7;
    list-style: none;
    position: relative;
    padding-left: 1.25rem;
}
.content8 ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gv-success);
    font-weight: 900;
    font-size: 1.1rem;
}
.content8 ul li strong {
    color: var(--gv-primary);
}

/* =========================================================
   FEATURES13 — Pricing intro
   ========================================================= */
.features13 {
    padding: 2rem 0 1rem;
    background: #fff;
}
.features13 .mbr-section-title {
    color: var(--gv-text);
    font-weight: 800;
}

/* =========================================================
   CONTENT17 — FAQ accordion
   ========================================================= */
.content17 {
    padding: 1.5rem 0 3rem;
    background: #fff;
}
.content17 .toggle-panel .card {
    background: #fff;
    border: 1px solid var(--gv-border);
    border-radius: 10px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(13, 79, 139, 0.04);
}
.content17 .card-header {
    background: #fff;
    border: none;
    padding: 0;
}
.content17 .panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    color: var(--gv-text);
    transition: background 0.2s ease;
}
.content17 .panel-title:hover {
    background: var(--gv-bg-soft);
    color: var(--gv-primary);
}
.content17 .panel-title:not(.collapsed) {
    background: var(--gv-primary);
    color: #fff !important;
}
.content17 .panel-title:not(.collapsed) .panel-title-edit { color: #fff; }
.content17 .panel-title .sign {
    font-size: 1.1rem;
    transition: transform 0.25s ease;
    color: inherit;
}
.content17 .panel-title:not(.collapsed) .sign {
    transform: rotate(180deg);
}
.content17 .panel-title-edit {
    font-weight: 600;
    margin: 0;
    flex: 1;
    color: inherit;
    font-size: 1rem;
}
.content17 .panel-body {
    background: var(--gv-bg-soft);
    padding: 1.15rem 1.25rem;
}
.content17 .panel-text {
    color: var(--gv-text-soft);
    margin: 0;
    line-height: 1.7;
}

/* =========================================================
   FEATURES6 — Final discount card with bottle + price
   ========================================================= */
.features6 {
    padding: 3rem 0;
    background: var(--gv-bg-soft);
}
.features6 .card-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gv-border);
    box-shadow: 0 12px 28px rgba(13, 79, 139, 0.08);
}
.features6 .image-wrapper img {
    max-height: 280px;
    object-fit: contain;
}
.features6 .mbr-title {
    color: var(--gv-primary-d);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.features6 .cost {
    margin-top: 0.75rem;
}
.features6 .currentcost {
    color: var(--gv-text-soft);
    font-weight: 500;
}
.features6 .oldcost {
    color: var(--gv-warning-d);
    text-decoration: line-through;
    font-weight: 800;
}

/* =========================================================
   INFO3 — Final CTA banner
   ========================================================= */
.info3 {
    padding: 3rem 0;
    background:
        linear-gradient(135deg, rgba(24, 98, 198, 0.92) 0%, rgba(13, 79, 139, 0.95) 100%),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1), transparent 50%);
    color: #fff;
}
.info3 .card {
    background: transparent;
    border: none;
}
.info3 .card-box {
    text-align: center;
}
.info3 .mbr-text {
    color: #fff;
    margin-bottom: 0.5rem;
}
.info3 h3.mbr-text { font-weight: 600; opacity: 0.9; }

/* =========================================================
   CONTENT13 — Footer links
   ========================================================= */
.content13 {
    padding: 2.5rem 0 1.5rem;
    background: #1a2942;
    color: #d4dfee;
}
.content13 .list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.content13 .list li {
    margin-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.6rem;
}
.content13 .list li:last-child { border-bottom: none; }
.content13 .list li a {
    color: #d4dfee !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.content13 .list li a:hover {
    color: #fff !important;
    text-decoration: underline;
}

/* Footer disclaimer (content4 right after content13) */
.content13 + .content4 {
    background: #122036;
    padding: 1.5rem 0 2rem;
}
.content13 + .content4 .mbr-section-subtitle {
    color: #98a8c0 !important;
    font-size: 0.85rem !important;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scrollToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: var(--gv-primary);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1020;
    box-shadow: 0 8px 18px rgba(24, 98, 198, 0.35);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.scrollToTop a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.3rem;
}
.scrollToTop.visible {
    display: flex;
}
.scrollToTop:hover {
    transform: translateY(-3px);
    background: var(--gv-primary-d);
}

/* =========================================================
   LEGAL PAGES — Common
   ========================================================= */
.legal-page {
    padding: 3rem 0 4rem;
    background: var(--gv-bg-soft);
}
.legal-page h2 {
    font-size: 1.4rem;
    color: var(--gv-primary-d);
    font-weight: 800;
    border-bottom: 2px solid var(--gv-primary);
    display: inline-block;
    padding-bottom: 0.3rem;
    margin: 1.75rem 0 0.75rem;
}
.legal-page h3 {
    font-size: 1.1rem;
    color: var(--gv-primary);
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
}
.legal-page p {
    color: var(--gv-text-soft);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.legal-page ul { padding-left: 1.4rem; margin-bottom: 1.25rem; }
.legal-page ul li { color: var(--gv-text-soft); margin-bottom: 0.5rem; line-height: 1.6; }
.legal-page a {
    color: var(--gv-primary);
    text-decoration: underline;
    font-weight: 500;
}
.legal-page a:hover { color: var(--gv-primary-d); }
.legal-updated {
    background: #fff;
    border-left: 4px solid var(--gv-primary);
    padding: 0.85rem 1.1rem;
    border-radius: 0 8px 8px 0;
    color: var(--gv-text);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 10px rgba(13, 79, 139, 0.05);
}

/* =========================================================
   FADE-IN ANIMATION (JS)
   ========================================================= */
.fade-init {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-init.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
    .header11 { padding: 2.25rem 0; }
    .header11 .image-wrapper { margin-bottom: 1.5rem; text-align: center; }
    .header11 .image-wrapper img { max-width: 320px; }
    .gallery3 { padding: 2rem 0; }
    .features23 { padding: 2rem 0; }
    .features16 .col-12.col-lg-4 { text-align: center; margin-bottom: 1rem; }
}
@media (max-width: 576px) {
    .header3 .mbr-section-subtitle { padding: 0 0.75rem; }
    .features6 .card-wrapper { padding: 1.25rem; }
    .features6 .image-wrapper { text-align: center; margin-bottom: 1rem; }
    .info3 { padding: 2rem 0; }
}
