/*  ROOT THEME ]CSS */
:root {
    --primary-color: #d4a017;
    --primary-dark: #b88a0f;
    --primary-light: #f5d76e;

    --gradient-primary: linear-gradient(135deg, #c89b2b, #d4a72c);

    --bg-dark: #1a1207;
    --bg-section: #f8f6f2;
    --bg-card: #ffffff;

    --sidebar-bg: #1a1207;
    --header-bg: #ffffff;
    --body-bg: #f8f6f2;

    --text-dark: #222222;
    --text-light: #666666;
    --text-white: #ffffff;

    --border-color: #e5e5e5;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* GLOBAL CSS */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    background: var(--body-bg);
    color: var(--text-dark);
    font-family: 'Segoe UI', sans-serif;
}

body.no-scroll {
    overflow: hidden;
}

main {
    flex: 1;
    padding-top: 80px;
    scroll-margin-top: 100px;
}

/* SECTION CSS */
.section {
    background: var(--bg-section);
    padding: 60px 0;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    border-radius: 10px;
}

/*  HEADER CSS */
.vg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    padding: 14px 0;
    transition: 0.3s;
}

.vg-header.scrolled {
    padding: 8px 0;
}

.vg-logo img {
    height: 55px;
}

.vg-nav ul {
    list-style: none;
    gap: 28px;
}

.vg-nav ul li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: 0.3s;
}

.vg-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

.vg-nav ul li a:hover {
    color: var(--primary-color);
}

.vg-nav ul li a:hover::after {
    width: 100%;
}

.vg-nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.vg-btn-login {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.vg-btn-login:hover {
    background: var(--primary-dark);
    color: var(--text-white);
}

.vg-logo {
    text-decoration: none;
}

.vg-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.vg-logo:hover .vg-logo-text {
    color: var(--primary-dark);
}

.vg-menu-toggle {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.vg-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

@media (min-width: 993px) {
    .vg-menu-toggle {
        display: none;
    }
}

@media (max-width: 992px) {

    .vg-nav {
        display: block;
        position: fixed;
        top: 70px;
        right: -100%;
        width: 260px;
        height: 100%;
        background: var(--bg-card);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
        transition: right 0.3s ease;
        padding: 20px;
        z-index: 999;
        overflow-y: auto;
    }

    .vg-nav.active {
        right: 0;
    }

    .vg-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .vg-nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .vg-nav ul li:last-child {
        border-bottom: none;
    }

    .vg-nav ul li a {
        display: block;
        padding: 12px 4px;
        width: 100%;
    }

    .vg-nav ul li a::after {
        display: none;
    }
}

/*  FOOTER CSS */
.vg-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 40px 0;
    font-size: 14px;
    text-align: center;
}

.vg-footer-logo {
    height: 50px;
}

.vg-footer p {
    color: var(--text-light);
    margin-bottom: 6px;
}

.vg-footer a {
    color: var(--primary-light);
    text-decoration: none;
    margin: 0 6px;
    transition: 0.3s;
}

.vg-footer a:hover {
    color: var(--primary-color);
}

.vg-footer .divider {
    color: var(--text-light);
}

#backToTop {
    display: none;
    z-index: 999;
    background: var(--primary-color);
    color: #fff;
    border: none;
}

#backToTop:hover {
    background: var(--primary-dark);
}

@media (max-width: 992px) {

    .vg-nav {
        display: none;
    }

    .vg-logo img {
        height: 45px;
    }

    main {
        padding-top: 80px;
    }
}

.vg-menu-toggle {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-dark);
}

.vg-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

@media (max-width: 992px) {

    .vg-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 260px;
        height: 100%;
        background: var(--bg-card);
        box-shadow: var(--shadow-soft);
        transition: 0.3s;
        padding: 20px;
        z-index: 999;
    }

    .vg-nav.active {
        right: 0;
    }

    .vg-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .vg-nav ul li {
        width: 100%;
    }

    .vg-nav ul li a {
        width: 100%;
        display: block;
        padding: 8px 0;
    }
}

@media (max-width: 576px) {
    .vg-footer {
        font-size: 13px;
        padding: 30px 10px;
    }

    .vg-footer-logo {
        height: 40px;
    }
}

.container {
    max-width: 1200px;
}

@media (max-width: 768px) {
    main {
        padding-top: 80px;
    }
}

@media (max-width: 576px) {
    main {
        padding-top: 75px;
    }
}

/* LOGIN MODAL CSS */
.vg-modal {
    border-radius: 20px;
    padding: 25px;
    background: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
    position: relative;
}

.vg-modal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.modal-header {
    border-bottom: none;
    padding-bottom: 10px;
}

.modal-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 20px;
}

.btn-close {
    opacity: 0.6;
    transition: 0.3s;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding-top: 10px;
}

.vg-input {
    border-radius: 12px;
    padding: 14px 14px;
    border: 1px solid var(--border-color);
    background: #f9f9f9;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
}

.vg-input::placeholder {
    color: var(--text-light);
}

.vg-input:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
    outline: none;
}

.vg-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 14px;
}

.ps-5 {
    padding-left: 40px !important;
}

.modal-body label {
    color: var(--text-light);
    font-size: 13px;
}

.vg-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.vg-link:hover {
    text-decoration: underline;
}

.vg-login {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.vg-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

.modal.fade .modal-dialog {
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

.vg-eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
}

.vg-eye-icon:hover {
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .vg-modal {
        padding: 20px;
        border-radius: 15px;
    }

    .modal-title {
        font-size: 18px;
    }
}


/* TOAST CSS */
#vgToastContainer {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    width: calc(100% - 40px);
}

.vg-toast {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--bg-card);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    border-left: 5px solid var(--primary-color);
    animation: vgSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

.vg-toast.hiding {
    animation: vgSlideOut 0.3s ease forwards;
}

.vg-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    transform-origin: left;
    animation: vgProgress 4s linear forwards;
    opacity: 0.5;
}

.vg-toast-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.vg-toast-body {
    flex: 1;
    min-width: 0;
}

.vg-toast-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.vg-toast-message {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
    word-break: break-word;
}

.vg-toast-close {
    background: none;
    border: none;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
    margin-top: 2px;
}

.vg-toast-close:hover {
    color: var(--text-dark);
}

.vg-toast--success {
    border-left-color: var(--primary-color);
}

.vg-toast--success .vg-toast-icon {
    background: rgba(212, 160, 23, 0.12);
    color: var(--primary-color);
}

.vg-toast--success .vg-toast-title {
    color: var(--primary-dark);
}

.vg-toast--success .vg-toast-progress {
    background: var(--primary-color);
}

.vg-toast--error {
    border-left-color: #e53935;
}

.vg-toast--error .vg-toast-icon {
    background: rgba(229, 57, 53, 0.10);
    color: #e53935;
}

.vg-toast--error .vg-toast-title {
    color: #c62828;
}

.vg-toast--error .vg-toast-progress {
    background: #e53935;
}

.vg-toast--info {
    border-left-color: #1e88e5;
}

.vg-toast--info .vg-toast-icon {
    background: rgba(30, 136, 229, 0.10);
    color: #1e88e5;
}

.vg-toast--info .vg-toast-title {
    color: #1565c0;
}

.vg-toast--info .vg-toast-progress {
    background: #1e88e5;
}

.vg-toast--warning {
    border-left-color: #f59e0b;
}

.vg-toast--warning .vg-toast-icon {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

.vg-toast--warning .vg-toast-title {
    color: #b45309;
}

.vg-toast--warning .vg-toast-progress {
    background: #f59e0b;
}

@keyframes vgSlideIn {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vgSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(60px);
    }
}

@keyframes vgProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

@media (max-width: 576px) {
    #vgToastContainer {
        top: auto;
        bottom: 20px;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: 100%;
    }

    @keyframes vgSlideIn {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes vgSlideOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(40px);
        }
    }
}

/* HERO SECTION CSS*/
.vg-hero {
    position: relative;
    background-image: url('../images/banner-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.vg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(26, 18, 7, 0.85) 0%,
            rgba(26, 18, 7, 0.6) 35%,
            rgba(26, 18, 7, 0.1) 70%);
}

.vg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.vg-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vg-hero-content p {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.vg-hero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.vg-hero-btn:hover {
    background: var(--primary-dark);
    color: var(--text-white);
}

@media (max-width:992px) {

    .vg-hero {
        min-height: 420px;
    }

    .vg-hero-content h1 {
        font-size: 42px;
    }

    .vg-hero-content p {
        font-size: 16px;
    }

}

@media (max-width:576px) {

    .vg-hero {
        min-height: 380px;
        text-align: center;
    }

    .vg-hero-content {
        margin: auto;
    }

    .vg-hero-content h1 {
        font-size: 32px;
    }

    .vg-hero-content p {
        font-size: 15px;
    }

}

/*  FEATURES SECTION CSS*/
.vg-features {
    background: #f3efe9;
}

.vg-section-title {
    font-weight: 700;
    color: #a67800;
    font-size: 28px;
}

.vg-feature-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-align: center;
    height: 100%;
}

.vg-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.vg-feature-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.vg-feature-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

@media (max-width: 992px) {
    .vg-section-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {

    .vg-section-title {
        font-size: 22px;
    }

    .vg-feature-card {
        padding: 20px 15px;
    }

    .vg-feature-card h5 {
        font-size: 15px;
    }

    .vg-feature-card p {
        font-size: 12px;
    }
}

/* WHY CHOOSE SECTION CSS */
.vg-why {
    background: var(--bg-card);
}

.vg-device-mockup {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
}

.vg-device-mockup img {
    max-width: 100%;
    height: auto;
}

.vg-why-list {
    list-style: none;
    padding-left: 0;
}

.vg-why-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-dark);
    position: relative;
    padding-left: 24px;
}

.vg-why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.vg-section-title {
    font-weight: 700;
    color: var(--primary-dark);
}
@media (max-width: 992px) {

    .vg-why .row {
        text-align: center;
    }

    .vg-why-list {
        text-align: left;
        margin-top: 20px;
    }

}

@media (max-width:576px) {

    .vg-device-mockup {
        padding: 20px;
    }

    .vg-why-list li {
        font-size: 14px;
        margin-bottom: 10px;
    }

}

/* SCREENSHOT SECTION CSS */
.vg-screenshots {
    background:#f3efe9;
}

.vg-section-subtitle {
    color: var(--text-light);
    font-size: 15px;
}

.vg-slide-box.single {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.vg-slide-box.single:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.vg-slide-box.single img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 14px;
}

.vg-carousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

.vg-carousel .carousel-control-prev,
.vg-carousel .carousel-control-next {
    width: auto;
}

.vg-arrow {
    background: var(--primary-color);
    color: #fff;
    font-size: 26px;
    padding: 8px 16px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.vg-arrow:hover {
    background: var(--primary-dark);
}

.carousel-indicators button {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background-color: var(--primary-color) !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    opacity: 0.4;
    transition: opacity 0.3s, transform 0.3s;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--primary-color) !important;
}

.vg-download-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

.vg-download-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

@media (max-width: 768px) {
    .vg-slide-box.single {
        padding: 12px;
    }

    .vg-slide-box.single img {
        max-height: 400px;
    }
}
 /* DEMO SECTION CSS */
 .vg-demo {
     background: var(--bg-card);
     padding: 80px 0;
 }

 .vg-demo-badge {
     display: inline-block;
     background: rgba(212, 160, 23, 0.12);
     color: var(--primary-dark);
     border: 1px solid rgba(212, 160, 23, 0.35);
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     padding: 5px 16px;
     border-radius: 30px;
 }

 .vg-demo-sub {
     color: var(--text-light);
     font-size: 15px;
     max-width: 520px;
     margin: 8px auto 0;
     line-height: 1.7;
 }

 .vg-demo-stage {
     position: relative;
     max-width: 860px;
     margin: 0 auto 36px;
     padding: 10px;
     background: var(--bg-card);
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px var(--border-color);
 }

 .vg-demo-corner {
     position: absolute;
     width: 18px;
     height: 18px;
     border-color: var(--primary-color);
     border-style: solid;
     z-index: 2;
 }

 .vg-demo-corner--tl {
     top: -1px;
     left: -1px;
     border-width: 3px 0 0 3px;
     border-radius: 6px 0 0 0;
 }

 .vg-demo-corner--tr {
     top: -1px;
     right: -1px;
     border-width: 3px 3px 0 0;
     border-radius: 0 6px 0 0;
 }

 .vg-demo-corner--bl {
     bottom: -1px;
     left: -1px;
     border-width: 0 0 3px 3px;
     border-radius: 0 0 0 6px;
 }

 .vg-demo-corner--br {
     bottom: -1px;
     right: -1px;
     border-width: 0 3px 3px 0;
     border-radius: 0 0 6px 0;
 }

 .vg-demo-video-wrap {
     border-radius: 14px;
     overflow: hidden;
     background: var(--bg-dark);
     position: relative;
     aspect-ratio: 16 / 9;
 }

 .vg-demo-poster {
     position: relative;
     width: 100%;
     height: 100%;
 }

 .vg-demo-video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     border-radius: 14px;
 }

 .vg-play-btn {
     position: absolute;
     inset: 0;
     margin: auto;
     width: 72px;
     height: 72px;
     border-radius: 50%;
     background: var(--primary-color);
     border: none;
     color: #fff;
     font-size: 22px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 5;
     transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
     box-shadow: 0 8px 30px rgba(212, 160, 23, 0.55);
 }

 .vg-play-btn i {
     margin-left: 4px;
 }

 .vg-play-btn:hover {
     transform: scale(1.1);
     background: var(--primary-dark);
     box-shadow: 0 12px 40px rgba(212, 160, 23, 0.65);
 }

 .vg-play-ripple {
     position: absolute;
     inset: -10px;
     border-radius: 50%;
     border: 2px solid rgba(212, 160, 23, 0.4);
     animation: vgRipple 2s ease-out infinite;
     pointer-events: none;
 }

 @keyframes vgRipple {
     0% {
         transform: scale(1);
         opacity: 0.7;
     }

     100% {
         transform: scale(1.45);
         opacity: 0;
     }
 }

 .vg-demo-label {
     position: absolute;
     top: 14px;
     left: 14px;
     background: rgba(26, 18, 7, 0.75);
     backdrop-filter: blur(6px);
     color: #fff;
     font-size: 12px;
     font-weight: 600;
     padding: 5px 12px;
     border-radius: 20px;
     letter-spacing: 0.4px;
     display: flex;
     align-items: center;
     gap: 6px;
     z-index: 5;
 }

 .vg-live-dot {
     font-size: 7px;
     color: var(--primary-color);
     animation: vgBlink 1.4s ease-in-out infinite;
 }

 @keyframes vgBlink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.2;
     }
 }


 .vg-demo-video-wrap.playing .vg-play-btn,
 .vg-demo-video-wrap.playing .vg-demo-label {
     display: none;
 }

 @media (max-width: 768px) {
     .vg-demo-stage {
         padding: 8px;
     }

     .vg-play-btn {
         width: 58px;
         height: 58px;
         font-size: 18px;
     }
 }

 @media (max-width: 480px) {
     .vg-demo {
         padding: 50px 0;
     }

     .vg-play-btn {
         width: 50px;
         height: 50px;
         font-size: 16px;
     }

     .vg-pill {
         font-size: 12px;
         padding: 6px 12px;
     }
 }

/* FAQ SECTION CSS */
.vg-faq {
    background: var(--bg-card);
}

.vg-faq-accordion {
    max-width: 900px;
    margin: auto;
}

.vg-faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.vg-faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-card);
}

.vg-faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.vg-faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--text-dark);
}

.vg-faq-accordion .accordion-body {
    font-size: 14px;
    color: var(--text-light);
    background: #fff;
}

@media (max-width:576px) {

    .vg-faq-accordion .accordion-button {
        font-size: 14px;
    }

    .vg-faq-accordion .accordion-body {
        font-size: 13px;
    }

}

/* PRICING SECTION CSS */
.vg-pricing {
    background:#f3efe9;
    padding: 80px 0;
}

.vg-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.vg-qr-box {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.vg-pricing-card {
    background: var(--white);
    padding: 35px;
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.vg-pricing-card h3 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.vg-pricing-card .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.vg-pricing-card .price span {
    font-size: 16px;
    color: var(--text-light);
}

.vg-features {
    list-style: none;
}

.vg-features li {
    margin: 8px 0;
    color: var(--text-dark);
}

.vg-btn-buy {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: var(--gradient-primary);
    color: var(--bg-card);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.vg-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.vg-payment-note {
    color: var(--text-dark);
}

.vg-btn-whatsapp {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    border-radius: 30px;
    background: var(--whatsapp-color);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.vg-btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
}

/* CONTACT SECTION CSS */
.vg-contact {
    background: var(--bg-section);
}

.vg-contact-sub {
    color: var(--text-light);
    max-width: 600px;
    margin: auto;
    font-size: 15px;
}

.vg-contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
}

.vg-input-group {
    position: relative;
}

.vg-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}

.vg-field {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 12px 14px 12px 38px;
    background: #f9f9f9;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.vg-field::placeholder {
    color: var(--text-light);
}

.vg-field:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
    outline: none;
}

.vg-textarea {
    height: 100%;
    min-height: 130px;
    resize: vertical;
    margin-bottom: 4px;
}

.vg-btn-contact {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.vg-btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 160, 23, 0.35);
}

.vg-contact-info {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.vg-contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.vg-contact-info-sub {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.vg-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vg-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vg-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(212, 160, 23, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: 0.3s;
}

.vg-contact-item:hover .vg-contact-icon {
    background: var(--primary-color);
    color: #fff;
}

.vg-contact-icon--whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.vg-contact-item:hover .vg-contact-icon--whatsapp {
    background: #25d366;
    color: #fff;
}

.vg-contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.vg-contact-value {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.vg-contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.2s;
}

.vg-contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 991px) {

    .vg-contact-form-wrap,
    .vg-contact-info {
        padding: 25px;
    }
}

@media (max-width: 576px) {

    .vg-contact-form-wrap,
    .vg-contact-info {
        padding: 20px;
    }

    .vg-contact-info-title {
        font-size: 18px;
    }
}
