@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

:root {
    --primary: #e65c00;
    --primary-dark: #c44e00;
    --primary-light: #ff7a1a;
    --primary-bg: #fff5ee;
    --secondary: #2d6a4f;
    --accent-gold: #d4a017;

    --text-900: #1a1a1a;
    --text-700: #333333;
    --text-500: #666666;
    --text-300: #999999;
    --text-100: #cccccc;

    --body-bg: #fdf6ee;
    --white: #ffffff;
    --card-bg: #ffffff;
    --footer-bg: #fdf6ee;
    --header-bg: #ffffff;

    --border: #e8ddd0;
    --border-light: #f0e8de;

    --shadow-sm: 0 2px 8px rgba(230, 92, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(230, 92, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(230, 92, 0, 0.16);
    --shadow-header: 0 2px 20px rgba(0, 0, 0, 0.08);

    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-full: 999px;

    --t-fast: 0.18s ease;
    --t-med: 0.28s ease;
    --t-slow: 0.42s ease;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;

    --header-height: 72px;

    --z-header: 1000;
    --z-dropdown: 1100;
    --z-modal: 1200;
    --z-toast: 1300;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--body-bg);
    color: var(--text-700);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body>main {
    padding-top: var(--header-height);
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-900);
    line-height: 1.3;
}

.container-fluid-custom {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-primary-brand {
    color: var(--primary);
}

.bg-primary-brand {
    background-color: var(--primary);
}

.btn-primary-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
    white-space: nowrap;
}

.btn-primary-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 92, 0, 0.35);
    filter: brightness(1.06);
    color: var(--white);
}

.btn-primary-brand:active {
    transform: translateY(0);
}

.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary);
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all var(--t-fast);
}

.btn-outline-brand:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 48px 0;
}

.card-brand {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--t-med), box-shadow var(--t-med);
}

.card-brand:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.divider-brand {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    border-radius: var(--r-full);
    margin: 12px auto 0;
}

.badge-brand {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 1px solid rgba(230, 92, 0, 0.2);
}

#backToTop {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-med), visibility var(--t-med), transform var(--t-fast);
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: var(--shadow-lg);
}

/* HEADER CSS */
.vg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--header-bg);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-header);
    z-index: var(--z-header);
    transition: box-shadow var(--t-med), background var(--t-med);
}

.vg-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.vg-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.vg-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.vg-logo-img {
    height: 50px;
    width: 20px;
    width: auto;
    object-fit: contain;
    border-radius:50%;
}

.vg-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.vg-logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--primary);
    white-space: nowrap;
}

.vg-logo-tagline {
    font-size: 11px;
    color: var(--text-500);
    font-weight: 400;
    white-space: nowrap;
}

.vg-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.vg-nav-link {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14.5px;
    color: var(--text-700);
    border-radius: var(--r-sm);
    transition: color var(--t-fast);
    position: relative;
    white-space: nowrap;
}

.vg-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: var(--r-full);
    transform: scaleX(0);
    transition: transform var(--t-fast);
}

.vg-nav-link:hover,
.vg-nav-link.active {
    color: var(--primary);
}

.vg-nav-link:hover::after,
.vg-nav-link.active::after {
    transform: scaleX(1);
}

.vg-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.vg-btn-login {
    padding: 9px 20px;
    background: transparent;
    color: var(--text-700);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all var(--t-fast);
    white-space: nowrap;
}

.vg-btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.vg-btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
    white-space: nowrap;
    text-decoration: none;
}

.vg-btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 92, 0, 0.35);
    filter: brightness(1.06);
}

.vg-user-dropdown {
    position: relative;
}

.vg-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: var(--primary-bg);
    border: 1.5px solid rgba(230, 92, 0, 0.2);
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all var(--t-fast);
}

.vg-user-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.vg-user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
}

.vg-user-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-700);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vg-user-arrow {
    font-size: 11px;
    color: var(--text-500);
    transition: transform var(--t-fast);
}

.vg-user-dropdown.open .vg-user-arrow {
    transform: rotate(180deg);
}

.vg-user-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast);
    z-index: var(--z-dropdown);
}

.vg-user-dropdown.open .vg-user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vg-user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-700);
    border-radius: var(--r-sm);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast);
    text-align: left;
    text-decoration: none;
}

.vg-user-menu-item i {
    width: 16px;
    color: var(--text-300);
    transition: color var(--t-fast);
}

.vg-user-menu-item:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.vg-user-menu-item:hover i {
    color: var(--primary);
}

.vg-logout-btn {
    color: #e74c3c;
}

.vg-logout-btn i {
    color: #e74c3c;
}

.vg-logout-btn:hover {
    background: #fdf0f0;
    color: #e74c3c;
}

.vg-user-menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 4px 0;
}

.vg-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: border-color var(--t-fast);
    flex-shrink: 0;
}

.vg-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-700);
    border-radius: 2px;
    transition: all var(--t-fast);
}

.vg-hamburger:hover {
    border-color: var(--primary);
}

.vg-hamburger:hover span {
    background: var(--primary);
}

.vg-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vg-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.vg-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.vg-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: calc(var(--z-header) + 1);
    opacity: 0;
    transition: opacity var(--t-med);
}

.vg-mobile-overlay.show {
    display: block;
    opacity: 1;
}

.vg-mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100dvh;
    background: var(--white);
    z-index: calc(var(--z-header) + 2);
    display: flex;
    flex-direction: column;
    transition: right var(--t-med);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
}

.vg-mobile-nav.open {
    right: 0;
}

.vg-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.vg-mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    transition: background var(--t-fast);
}

.vg-mobile-close:hover {
    background: rgba(230, 92, 0, 0.15);
}

.vg-mobile-nav-list {
    flex: 1;
    padding: 16px 12px;
    list-style: none;
    margin: 0;
}

.vg-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-700);
    border-radius: var(--r-md);
    transition: all var(--t-fast);
    margin-bottom: 4px;
    text-decoration: none;
}

.vg-mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--text-300);
    transition: color var(--t-fast);
    font-size: 15px;
}

.vg-mobile-nav-link:hover,
.vg-mobile-nav-link.active {
    background: var(--primary-bg);
    color: var(--primary);
}

.vg-mobile-nav-link:hover i,
.vg-mobile-nav-link.active i {
    color: var(--primary);
}

.vg-mobile-nav-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-light);
    flex-shrink: 0;
}


@media (max-width: 960px) {
    .vg-nav {
        display: none;
    }

    .vg-hamburger {
        display: flex;
    }

    .vg-btn-book {
        display: none;
    }

    .vg-btn-login {
        display: inline-flex !important;
        padding: 8px 16px;
        font-size: 13px;
    }

    .vg-header-inner {
        gap: 16px;
        padding: 0 16px;
        justify-content: space-between;
    }

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

    .vg-logo-text {
        display: flex;
    }

    .vg-header-actions {
        margin-left: 0;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .vg-header-inner {
        padding: 0 12px;
        gap: 10px;
    }

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

    .vg-logo-name {
        font-size: 15px;
    }

    .vg-logo-tagline {
        display: none;
    }

    .vg-btn-book {
        display: none;
    }
}

@media (max-width: 360px) {
    .vg-logo-name {
        font-size: 13px;
    }

    .vg-btn-book {
        padding: 7px 10px;
        font-size: 12px;
    }
}

.vg-logo-tagline-img {
    height: 100px;
    width: 100px;
    opacity: 0.85;
}

/* FOOTER CSS */
.vg-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border-light);
    font-family: var(--font-body);
}

.vg-footer-main {
    padding: 56px 0 48px;
}

.vg-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.vg-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.vg-footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;

}

.vg-footer-logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}

.vg-footer-about {
    font-size: 14px;
    color: var(--text-500);
    line-height: 1.7;
    margin-bottom: 12px;
}

.vg-footer-brand-name {
    color: var(--primary);
    font-weight: 600;
}

.vg-footer-made {
    font-size: 13.5px;
    color: var(--text-500);
}

.vg-footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 16px;
}

.vg-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vg-footer-link {
    font-size: 14px;
    color: var(--text-500);
    transition: color var(--t-fast), padding-left var(--t-fast);
    display: inline-block;
}

.vg-footer-link:hover {
    color: var(--primary);
    padding-left: 4px;
}

.vg-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vg-social-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    color: var(--white);
    text-decoration: none;
}

.vg-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    color: var(--white);
}

.vg-social-youtube {
    background: #ff0000;
}

.vg-social-facebook {
    background: #1877f2;
}

.vg-social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

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

.vg-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-500);
    line-height: 1.5;
}

.vg-footer-contact-item i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.vg-footer-contact-link {
    color: var(--text-500);
    transition: color var(--t-fast);
}

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

.vg-footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 18px 0;
}

.vg-footer-bottom .vg-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-template-columns: unset;
    gap: 0;
}

.vg-footer-copyright {
    font-size: 13.5px;
    color: var(--text-500);
    text-align: center;
    margin: 0;
}

@media (max-width: 1200px) {
    .container-fluid-custom {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {

    .vg-nav {
        display: none;
    }

    .vg-hamburger {
        display: flex;
    }

    .vg-btn-login {
        display: none;
    }

    .vg-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .vg-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    .section-sm {
        padding: 32px 0;
    }

    .container-fluid-custom {
        padding: 0 16px;
    }
}

@media (max-width: 640px) {

    .vg-header-inner {
        padding: 0 16px;
        gap: 16px;
    }

    .vg-logo-tagline {
        display: none;
    }

    .vg-logo-name {
        font-size: 15px;
    }

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

    .vg-btn-book {
        padding: 9px 16px;
        font-size: 13px;
    }

    .vg-footer-main {
        padding: 40px 0 32px;
    }

    .vg-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 0 16px;
    }

    .vg-footer-brand {
        grid-column: 1 / -1;
    }

    .vg-footer-bottom .vg-footer-inner {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .section {
        padding: 40px 0;
    }
}

@media (max-width: 420px) {
    .vg-footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .vg-logo-text {
        display: none;
    }
}

/* LOGIN & REGISTRATION MODAL CSS */
.vg-modal {
    border: none;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.vg-modal .modal-header {
    padding: 24px 28px 12px;
    background: linear-gradient(135deg, var(--primary-bg), #fff8f2);
    border-bottom: 1px solid var(--border-light) !important;
}

.vg-modal .modal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}

.vg-modal .btn-close {
    opacity: 0.5;
    transition: opacity var(--t-fast), transform var(--t-fast);
}

.vg-modal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.vg-modal .modal-body {
    padding: 24px 28px 28px;
}

.vg-input {
    height: 48px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-700);
    background: var(--white);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.vg-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 92, 0, 0.12);
    outline: none;
    background: var(--white);
}

.vg-input::placeholder {
    color: var(--text-300);
    font-size: 14px;
}

.vg-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-300);
    font-size: 14px;
    pointer-events: none;
    transition: color var(--t-fast);
}

.position-relative:focus-within .vg-icon {
    color: var(--primary);
}

.vg-eye-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-300);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    transition: color var(--t-fast);
}

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

.vg-login {
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
    letter-spacing: 0.3px;
}

.vg-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 92, 0, 0.35);
    filter: brightness(1.06);
}

.vg-login:active {
    transform: translateY(0);
    box-shadow: none;
}

.vg-link {
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 14px;
    transition: color var(--t-fast), text-decoration var(--t-fast);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.vg-modal .modal-body .text-center span {
    font-size: 14px;
    color: var(--text-500);
}

@media (max-width: 480px) {
    .vg-modal .modal-header {
        padding: 20px 20px 10px;
    }

    .vg-modal .modal-body {
        padding: 20px 20px 24px;
    }

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

    .vg-input {
        height: 44px;
        font-size: 14px;
    }

    .vg-login {
        height: 44px;
        font-size: 14px;
    }
}

.btn-google {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-700);
    font-weight: 600;
    border-radius: var(--r-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--t-med);
    box-shadow: var(--shadow-sm);
}

.btn-google i {
    color: #ea4335;
}

.btn-google:hover {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* TOAST MESSAGE CSS */
.toast-container {
    position: fixed;
    right: 20px;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    width: calc(100vw - 40px);
    pointer-events: none;
}

.vg-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--r-md);
    border-left: 4px solid transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    pointer-events: all;
    animation: vgToastIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

.vg-toast.hiding {
    animation: vgToastOut 0.28s ease forwards;
}

.vg-toast-success {
    border-left-color: #2d6a4f;
}

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

.vg-toast-warning {
    border-left-color: var(--accent-gold);
}

.vg-toast-info {
    border-left-color: #2980b9;
}

.vg-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.vg-toast-success .vg-toast-icon {
    background: #eaf6f0;
    color: #2d6a4f;
}

.vg-toast-error .vg-toast-icon {
    background: #fdf0f0;
    color: #e74c3c;
}

.vg-toast-warning .vg-toast-icon {
    background: #fdf8ec;
    color: var(--accent-gold);
}

.vg-toast-info .vg-toast-icon {
    background: #eaf3fb;
    color: #2980b9;
}

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

.vg-toast-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 2px;
}

.vg-toast-success .vg-toast-title {
    color: #2d6a4f;
}

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

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

.vg-toast-info .vg-toast-title {
    color: #2980b9;
}

.vg-toast-msg {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-500);
    line-height: 1.5;
    word-break: break-word;
}

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

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

.vg-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform-origin: left;
    animation: vgProgress 4s linear forwards;
    border-radius: 0 0 0 0;
}

.vg-toast-success .vg-toast-progress {
    background: #2d6a4f;
}

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

.vg-toast-warning .vg-toast-progress {
    background: var(--accent-gold);
}

.vg-toast-info .vg-toast-progress {
    background: #2980b9;
}

@keyframes vgToastIn {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.92);
    }

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

@keyframes vgToastOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
        max-height: 120px;
        margin-bottom: 0;
    }

    to {
        opacity: 0;
        transform: translateX(60px) scale(0.92);
        max-height: 0;
        margin-bottom: -10px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

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

    to {
        transform: scaleX(0);
    }
}

@media (max-width: 480px) {
    .toast-container {
        right: 12px;
        left: 12px;
        width: auto;
        max-width: 100%;
        top: calc(var(--header-height) + 12px);
    }

    .vg-toast {
        padding: 12px 14px;
    }

    .vg-toast-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .vg-toast-msg,
    .vg-toast-title {
        font-size: 13px;
    }
}

/* HERO SECTION CSS */
.vg-hero {
    background: linear-gradient(135deg, #fffaf4 0%, var(--primary-bg) 50%, #fff8f0 100%);
    padding: 60px 0 70px;
    overflow: hidden;
    position: relative;
}

.vg-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 92, 0, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.vg-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid rgba(230, 92, 0, 0.18);
    border-radius: var(--r-full);
    padding: 7px 14px 7px 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.vg-hero-om {
    font-size: 20px;
    color: var(--primary);
    line-height: 1;
}

.vg-hero-badge-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-700);
    white-space: nowrap;
}

.vg-hero-sound-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-bg);
    border: 1px solid rgba(230, 92, 0, 0.2);
    color: var(--primary);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-fast);
    flex-shrink: 0;
}

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

.vg-hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(32px, 4.5vw, 52px);
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 16px;
    position: relative;

    animation: vgTitleGlow 3s ease-in-out infinite;
}

@keyframes vgTitleGlow {

    0% {
        text-shadow: 0 0 0 rgba(230, 92, 0, 0);
        transform: scale(1);
    }

    50% {
        text-shadow:
            0 0 10px rgba(230, 92, 0, 0.4),
            0 0 20px rgba(230, 92, 0, 0.25),
            0 0 30px rgba(230, 92, 0, 0.15);
        transform: scale(1.03);
    }

    100% {
        text-shadow: 0 0 0 rgba(230, 92, 0, 0);
        transform: scale(1);
    }
}

.vg-hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-900);
    line-height: 1.4;
    margin-bottom: 14px;
}

.vg-hero-desc {
    font-size: 15px;
    color: var(--text-500);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.vg-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.vg-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--text-900);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
    white-space: nowrap;
}

.vg-hero-btn-outline:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.vg-hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.vg-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vg-hero-stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
    line-height: 1;
}

.vg-hero-stat-label {
    font-size: 12px;
    color: var(--text-500);
    font-weight: 500;
}

.vg-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

.vg-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vg-hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
}

.vg-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-xl);
    display: block;
    box-shadow: var(--shadow-lg);
}

.vg-hero-float-card {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(230, 92, 0, 0.18);
    border: 1px solid rgba(230, 92, 0, 0.12);
    animation: vgFloat 3s ease-in-out infinite;
    z-index: 2;
}

.vg-hero-float-om {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.vg-hero-float-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vg-hero-float-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-900);
}

.vg-hero-float-sub {
    font-size: 11.5px;
    color: var(--text-500);
    white-space: nowrap;
}

.vg-hero-deco-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-gold));
    opacity: 0.18;
    pointer-events: none;
}

.vg-hero-deco-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
}

.vg-hero-deco-2 {
    width: 48px;
    height: 48px;
    top: 30px;
    left: 20px;
    opacity: 0.1;
}

@keyframes vgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1024px) {
    .vg-hero-inner {
        gap: 40px;
    }

    .vg-hero-img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .vg-hero {
        padding: 40px 0 50px;
    }

    .vg-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .vg-hero-badge {
        margin: 0 auto 20px;
    }

    .vg-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .vg-hero-actions {
        justify-content: center;
    }

    .vg-hero-stats {
        justify-content: center;
    }

    .vg-hero-visual {
        order: -1;
    }

    .vg-hero-img {
        height: 300px;
        border-radius: var(--r-lg);
    }

    .vg-hero-float-card {
        right: 0;
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .vg-hero {
        padding: 32px 0 40px;
    }

    .vg-hero-inner {
        padding: 0 16px;
    }

    .vg-hero-badge-text {
        font-size: 11px;
    }

    .vg-hero-img {
        height: 240px;
    }

    .vg-hero-float-card {
        padding: 10px 12px;
        gap: 8px;
    }

    .vg-hero-float-om {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .vg-hero-float-title {
        font-size: 12px;
    }

    .vg-hero-float-sub {
        font-size: 10.5px;
    }

    .vg-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vg-hero-actions .vg-btn-book,
    .vg-hero-btn-outline {
        text-align: center;
        justify-content: center;
    }

    .vg-hero-stat-num {
        font-size: 18px;
    }
}

/* STATES MARQUE SECTION CSS */
.vg-stats-marquee {
    width: 100%;
    background: var(--primary);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.vg-stats-track {
    display: flex;
    gap: 70px;
    white-space: nowrap;
    width: max-content;
    animation: vgMarqueeMove 20s linear infinite;
}

.vg-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: var(--font-heading);
}

.vg-stat-num {
    font-weight: 800;
    font-size: 22px;
}

.vg-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

@keyframes vgMarqueeMove {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* PUJA PROCESS SECTION CSS */
.vg-process {
    background: linear-gradient(135deg, #fffaf4 0%, var(--primary-bg) 50%, #fff8f0 100%);
    padding: 56px 0 64px;
}

.vg-process-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 52px;
}

.vg-process-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--text-900);
    margin: 0;
}

.vg-process-crown {
    font-size: 28px;
    line-height: 1;
}

.vg-process-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.vg-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 220px;
}

.vg-process-connector {
    position: absolute;
    top: 44px;
    left: calc(50% + 44px);
    right: calc(-50% + 44px);
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--r-full);
    z-index: 0;
}

.vg-process-step-last .vg-process-connector {
    display: none;
}

.vg-process-icon-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 1;
}

.vg-process-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(var(--accent-gold) 0deg,
            transparent 20deg,
            var(--accent-gold) 40deg,
            transparent 60deg,
            var(--accent-gold) 80deg,
            transparent 100deg,
            var(--accent-gold) 120deg,
            transparent 140deg,
            var(--accent-gold) 160deg,
            transparent 180deg,
            var(--accent-gold) 200deg,
            transparent 220deg,
            var(--accent-gold) 240deg,
            transparent 260deg,
            var(--accent-gold) 280deg,
            transparent 300deg,
            var(--accent-gold) 320deg,
            transparent 340deg,
            var(--accent-gold) 360deg);
    opacity: 0.55;
    animation: vgSpinSlow 12s linear infinite;
}

.vg-process-icon-wrap::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--white);
}

.vg-process-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(230, 92, 0, 0.35);
    transition: transform var(--t-med), box-shadow var(--t-med);
}

.vg-process-step:hover .vg-process-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(230, 92, 0, 0.45);
}

/* ── Step Number Badge ── */
.vg-process-step:nth-child(1) .vg-process-icon::after {
    content: '1';
}

.vg-process-step:nth-child(2) .vg-process-icon::after {
    content: '2';
}

.vg-process-step:nth-child(3) .vg-process-icon::after {
    content: '3';
}

.vg-process-step:nth-child(4) .vg-process-icon::after {
    content: '4';
}

.vg-process-icon::after {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.vg-process-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-500);
    text-align: center;
    line-height: 1.6;
    margin: 0;
    padding: 0 8px;
}

@keyframes vgSpinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .vg-process-track {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .vg-process-step {
        flex-direction: row;
        align-items: center;
        max-width: 100%;
        width: 100%;
        gap: 20px;
        padding: 12px 0;
    }

    .vg-process-connector {
        position: absolute;
        top: auto;
        bottom: -28px;
        left: 44px;
        right: auto;
        width: 3px;
        height: 56px;
        background: linear-gradient(180deg, var(--primary), var(--primary-light));
    }

    .vg-process-icon-wrap {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .vg-process-label {
        text-align: left;
        font-size: 14.5px;
        color: var(--text-700);
        padding: 0;
    }

    .vg-process-step-last {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .vg-process {
        padding: 40px 0 48px;
    }

    .vg-process-heading {
        margin-bottom: 36px;
        gap: 10px;
    }

    .vg-process-crown {
        font-size: 22px;
    }

    .vg-process-icon-wrap {
        width: 72px;
        height: 72px;
    }

    .vg-process-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .vg-process-connector {
        left: 36px;
        height: 48px;
        bottom: -24px;
    }

    .vg-process-label {
        font-size: 13.5px;
    }
}

/* SERVICE SECTION CSS */
.vg-faith {
    background: var(--white);
    padding: 72px 0 80px;
}

.vg-faith-heading {
    text-align: center;
    margin-bottom: 52px;
}

.vg-faith-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.vg-faith-emoji {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.vg-faith-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(22px, 3vw, 34px);
    color: var(--text-900);
    margin: 0;
}

.vg-faith-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    margin: 0;
    letter-spacing: 0.2px;
}

.vg-faith-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vg-faith-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform var(--t-med), box-shadow var(--t-med);
}

.vg-faith-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.vg-faith-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.vg-faith-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.vg-faith-card:hover .vg-faith-img {
    transform: scale(1.05);
}

.vg-faith-body {
    padding: 22px 22px 26px;
}

.vg-faith-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--text-900);
    margin-bottom: 10px;
    line-height: 1.35;
}

.vg-faith-card-desc {
    font-size: 14px;
    color: var(--text-500);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 1024px) {
    .vg-faith-grid {
        gap: 20px;
    }

    .vg-faith-img-wrap {
        height: 190px;
    }
}

@media (max-width: 768px) {
    .vg-faith {
        padding: 52px 0 60px;
    }

    .vg-faith-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 20px;
    }

    .vg-faith-img-wrap {
        height: 220px;
    }

    .vg-faith-heading {
        margin-bottom: 36px;
    }
}

@media (max-width: 640px) {
    .vg-faith-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .vg-faith-img-wrap {
        height: 160px;
    }

    .vg-faith-card-title {
        font-size: 15px;
    }

    .vg-faith-card-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vg-faith {
        padding: 40px 0 48px;
    }

    .vg-faith-grid {
        grid-template-columns: 1fr;
    }

    .vg-faith-title-row {
        gap: 10px;
    }

    .vg-faith-emoji {
        font-size: 22px;
    }

    .vg-faith-img-wrap {
        height: 200px;
    }

    .vg-faith-body {
        padding: 18px 18px 22px;
    }
}

/* WHATSAPP JOIN SECTION CSS */
.vg-whatsapp {
    background: linear-gradient(135deg, #fffaf4 0%, var(--primary-bg) 50%, #fff8f0 100%);
    padding: 64px 0 72px;
}

.vg-whatsapp-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    gap: 0;
}

.vg-whatsapp-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.vg-wa-social-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.vg-wa-social-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vg-wa-social-badge i {
    font-size: 18px;
    line-height: 1;
}

.vg-wa-fb {
    color: #1877f2;
}

.vg-wa-yt {
    color: #ff0000;
}

.vg-wa-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vg-wa-social-count {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-700);
}

.vg-whatsapp-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.vg-wa-emoji {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.vg-whatsapp-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(20px, 3vw, 32px);
    color: var(--text-900);
    margin: 0;
    line-height: 1.2;
}

.vg-whatsapp-desc {
    font-size: 15px;
    color: var(--text-500);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 520px;
}

.vg-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #25d366;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--r-full);
    text-decoration: none;
    transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    position: relative;
    white-space: nowrap;
}

.vg-wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
    filter: brightness(1.06);
    color: var(--white);
}

.vg-wa-btn:active {
    transform: translateY(0);
}

.vg-wa-btn-icon {
    font-size: 20px;
    line-height: 1;
}

.vg-wa-btn-dot {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.85;
    animation: vgPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes vgPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .vg-whatsapp {
        padding: 52px 0 60px;
    }

    .vg-whatsapp-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .vg-whatsapp {
        padding: 40px 0 48px;
    }

    .vg-whatsapp-socials {
        gap: 8px;
        margin-bottom: 22px;
    }

    .vg-wa-social-badge {
        padding: 7px 14px;
    }

    .vg-wa-social-badge i {
        font-size: 16px;
    }

    .vg-wa-social-count {
        font-size: 13px;
    }

    .vg-whatsapp-heading {
        gap: 8px;
    }

    .vg-wa-emoji {
        font-size: 22px;
    }

    .vg-whatsapp-desc {
        font-size: 13.5px;
        margin-bottom: 24px;
    }

    .vg-wa-btn {
        padding: 13px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* SACRED TEMPLES SECTION CSS */
.vg-temples {
    background: var(--white);
    padding: 30px 0 0px;
}

.vg-temples-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.vg-temples-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(22px, 3vw, 34px);
    color: var(--primary);
    margin: 0;
}

.vg-temples-emoji {
    font-size: 28px;
    line-height: 1;
}

.vg-temples-slider-wrap {
    position: relative;
    padding-bottom: 44px;
}

.vgTemplesSwiper {
    overflow: hidden;
    padding: 8px 4px 30px;
}

.vg-temple-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform var(--t-med), box-shadow var(--t-med);
    height: 100%;
}

.vg-temple-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.vg-temple-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.vg-temple-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.vg-temple-card:hover .vg-temple-img {
    transform: scale(1.06);
}

.vg-temple-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 48px;
}

.vg-temple-book-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    padding: 5px 13px;
    border-radius: var(--r-full);
    text-decoration: none;
    z-index: 2;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    box-shadow: 0 3px 10px rgba(230, 92, 0, 0.35);
}

.vg-temple-book-badge:hover {
    transform: scale(1.06);
    color: var(--white);
}

.vg-temple-place-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 16px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
    z-index: 1;
}

.vg-temple-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vg-temple-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.vg-temple-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-900);
    margin: 0;
    line-height: 1.35;
    flex: 1;
}

.vg-temple-heart {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vg-temple-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-500);
}

.vg-temple-meta i {
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

.vg-temple-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-full);
    text-decoration: none;
    margin-top: 4px;
    transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
    box-shadow: 0 4px 14px rgba(230, 92, 0, 0.28);
}

.vg-temple-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(230, 92, 0, 0.38);
    filter: brightness(1.06);
    color: var(--white);
}

.vg-temples-pagination {
    position: absolute;
    bottom: 8px !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.vg-temples-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
    border-radius: 50%;
    transition: all var(--t-fast);
}

.vg-temples-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: var(--r-full);
}

@media (max-width: 768px) {
    .vg-temples {
        padding: 52px 0 60px;
    }

    .vg-temple-img-wrap {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .vg-temples {
        padding: 40px 0 48px;
    }

    .vg-temples-heading {
        gap: 10px;
        margin-bottom: 32px;
    }

    .vg-temples-emoji {
        font-size: 22px;
    }

    .vg-temple-img-wrap {
        height: 180px;
    }

    .vg-temple-name {
        font-size: 15px;
    }
}

/* TESTIMONIALS SECTION CSS */
.vg-testimonials {
    background: var(--white);
    padding: 40px 0 0px;
}

.vg-testimonials-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.vg-testimonials-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(22px, 3vw, 34px);
    color: var(--text-900);
    margin: 0;
}

.vg-test-emoji {
    font-size: 26px;
    line-height: 1;
}

.vg-testimonials-sub {
    text-align: center;
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-heading);
    margin: 0 0 44px;
}

.vg-test-slider-wrap {
    position: relative;
    padding-bottom: 52px;
}

.vgTestSwiper {
    overflow: hidden;
    padding: 8px 4px 16px;
}

.vg-test-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    box-sizing: border-box;
    transition: transform var(--t-med), box-shadow var(--t-med);
}

.vg-test-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.vg-test-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.vg-test-service {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--text-900);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.vg-test-google {
    font-size: 22px;
    color: #4285f4;
    flex-shrink: 0;
}

.vg-test-meta {
    font-size: 22px;
    color: #0082fb;
    flex-shrink: 0;
}

.vg-test-wa {
    font-size: 24px;
    color: #25d366;
    flex-shrink: 0;
}

.vg-test-platform-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.vg-test-review {
    font-size: 14px;
    color: var(--text-500);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.vg-test-stars {
    display: flex;
    gap: 3px;
}

.vg-test-stars i {
    color: #f5a623;
    font-size: 15px;
}

.vg-test-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.vg-test-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vg-test-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vg-test-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--text-900);
}

.vg-test-via {
    font-size: 12px;
    color: var(--text-300);
}

.vg-test-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.vg-test-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
    border-radius: 50%;
    transition: all var(--t-fast);
}

.vg-test-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: var(--r-full);
}

@media (max-width: 768px) {
    .vg-testimonials {
        padding: 52px 0 60px;
    }
}

@media (max-width: 480px) {
    .vg-testimonials {
        padding: 40px 0 48px;
    }

    .vg-testimonials-heading {
        gap: 10px;
    }

    .vg-test-emoji {
        font-size: 20px;
    }

    .vg-test-card {
        padding: 18px 16px 16px;
    }

    .vg-test-service {
        font-size: 14.5px;
    }

    .vg-test-review {
        font-size: 13.5px;
    }
}

/* CHADHAVA AND PUJA LIST PAGE CSS */
.vg-page-hero {
    background: linear-gradient(135deg, #fffaf4 0%, var(--primary-bg) 60%, #fff8f0 100%);
    padding: 40px 0 36px;
    border-bottom: 1px solid var(--border-light);
}

.vg-page-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.vg-page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vg-page-hero-title {
    justify-content: center;
}

.vg-page-hero-desc {
    max-width: 520px;
    text-align: center;
}

.vg-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-300);
    margin-bottom: 10px;
}

.vg-page-breadcrumb a {
    color: var(--primary);
    font-weight: 600;
    transition: color var(--t-fast);
}

.vg-page-breadcrumb a:hover {
    color: var(--primary-dark);
}

.vg-page-breadcrumb i {
    font-size: 10px;
    color: var(--text-300);
}

.vg-page-hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(24px, 3.5vw, 38px);
    color: var(--text-900);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vg-page-hero-emoji {
    font-size: 32px;
    line-height: 1;
}

.vg-page-hero-desc {
    font-size: 15px;
    color: var(--text-500);
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
}

.vg-page-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.vg-page-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.vg-page-stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--primary);
    line-height: 1;
}

.vg-page-stat-label {
    font-size: 12px;
    color: var(--text-500);
    font-weight: 500;
    white-space: nowrap;
}

.vg-page-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.vg-chadh-list {
    background: linear-gradient(160deg, #fffaf4 0%, var(--primary-bg) 40%, #fff8f0 100%);
    padding: 60px 0 72px;
}

.vg-chadh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vg-chadh-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform var(--t-med), box-shadow var(--t-med);
    display: flex;
    flex-direction: column;
}

.vg-chadh-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.vg-chadh-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.vg-chadh-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}

.vg-chadh-card:hover .vg-chadh-img {
    transform: scale(1.06);
}

.vg-chadh-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 52px;
}

.vg-chadh-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.62);
    color: var(--white);
    font-size: 11.5px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 5px 11px;
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.vg-chadh-date-badge i {
    font-size: 11px;
    color: var(--accent-gold);
}

.vg-chadh-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.vg-chadh-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.vg-chadh-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-900);
    margin: 0;
    line-height: 1.35;
    flex: 1;
}

.vg-chadh-heart {
    color: var(--primary);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.vg-chadh-place {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-500);
}

.vg-chadh-place i {
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

.vg-chadh-reason {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-500);
    background: var(--primary-bg);
    padding: 5px 10px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(230, 92, 0, 0.12);
}

.vg-chadh-reason i {
    color: var(--accent-gold);
    font-size: 11px;
    flex-shrink: 0;
}

.vg-chadh-desc {
    font-size: 13.5px;
    color: var(--text-500);
    line-height: 1.65;
}

.vg-chadh-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-full);
    text-decoration: none;
    margin-top: auto;
    transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
    box-shadow: 0 4px 14px rgba(230, 92, 0, 0.28);
}

.vg-chadh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(230, 92, 0, 0.38);
    filter: brightness(1.06);
    color: var(--white);
}

.vg-empty-state {
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.vg-empty-icon {
    font-size: 64px;
    color: var(--border);
}

.vg-empty-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--text-700);
    margin: 0;
}

.vg-empty-desc {
    font-size: 15px;
    color: var(--text-300);
    margin: 0;
}

.vg-chadh-grid:has(.vg-chadh-card:only-child) {
    grid-template-columns: minmax(0, 400px);
    justify-content: center;
}

@media (max-width: 1200px) {
    .vg-chadh-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

@media (max-width: 900px) {
    .vg-chadh-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .vg-page-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .vg-page-hero-stats {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .vg-chadh-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .vg-chadh-img-wrap {
        height: 160px;
    }

    .vg-chadh-name {
        font-size: 14px;
    }

    .vg-chadh-btn {
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 420px) {
    .vg-chadh-grid {
        grid-template-columns: 1fr;
    }

    .vg-chadh-img-wrap {
        height: 200px;
    }

    .vg-page-hero-stats {
        gap: 16px;
    }

    .vg-page-stat-divider {
        height: 28px;
    }
}

/* JAAP MALA PAGE CSS */
.jm-hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, #ffe8d0 100%);
    padding: 48px 20px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(230, 92, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.jm-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}

.jm-hero-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-500);
    margin: 0;
}

.jm-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    border-radius: var(--r-full);
    margin: 14px auto 0;
}

.jm-section {
    padding: 36px 16px 60px;
    background: var(--body-bg);
}

.jm-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.jm-card {
    width: 280px;
    flex-shrink: 0;
    background: var(--card-bg);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform var(--t-med), box-shadow var(--t-med);
    display: flex;
    flex-direction: column;
}

.jm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.jm-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.jm-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.jm-card:hover .jm-card-img-wrap img {
    transform: scale(1.06);
}

.jm-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(230, 92, 0, 0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 4px 10px;
    border-radius: var(--r-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.jm-card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.jm-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-900);
    margin: 0;
}

.jm-card-mantra {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-500);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.jm-card-btn {
    margin-top: auto;
    padding-top: 14px;
}

.btn-start-mala {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: opacity var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    box-shadow: 0 4px 14px rgba(230, 92, 0, 0.3);
}

.btn-start-mala:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 92, 0, 0.4);
}

.btn-start-mala:active {
    transform: scale(0.97);
}

.jm-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(26, 14, 4, 0.65);
    backdrop-filter: blur(6px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.jm-modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.jm-modal {
    background: var(--white);
    border-radius: var(--r-xl);
    width: 100%;
    max-width: 420px;
    padding: 32px 28px 28px;
    box-shadow: 0 24px 80px rgba(230, 92, 0, 0.22);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    text-align: center;
}

.jm-modal-backdrop.active .jm-modal {
    transform: scale(1) translateY(0);
}

.jm-modal-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 4px;
}

.jm-modal-timer {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-300);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.jm-modal-timer span {
    color: var(--primary);
    font-weight: 700;
}

.mala-ring-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 22px;
}

.mala-ring-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mala-bead {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 35% 30%, #d4956a, #7a3e1e);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 200, 150, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.mala-bead.active {
    background: radial-gradient(circle at 35% 30%, var(--primary-light), var(--primary-dark));
    box-shadow: 0 0 12px rgba(230, 92, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%) scale(1.18);
    border-color: rgba(255, 200, 100, 0.5);
}

.mala-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.4rem;
    filter: drop-shadow(0 2px 6px rgba(230, 92, 0, 0.3));
}

.jm-progress-wrap {
    margin-bottom: 10px;
}

.jm-progress-track {
    width: 100%;
    height: 10px;
    background: var(--border-light);
    border-radius: var(--r-full);
    overflow: hidden;
    position: relative;
}

.jm-progress-fill {
    height: 100%;
    border-radius: var(--r-full);
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-gold) 100%);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.jm-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    animation: shimmer 1.8s infinite;
    border-radius: var(--r-full);
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.jm-count-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-500);
    margin: 8px 0 20px;
}

.jm-count-label strong {
    color: var(--primary);
    font-size: 1rem;
}

.jm-modal-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-music {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(45, 106, 79, 0.35);
    transition: opacity var(--t-fast), transform var(--t-fast);
}

.btn-music:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-music:active {
    transform: scale(0.97);
}

.btn-jap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--r-full);
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(230, 92, 0, 0.38);
    transition: opacity var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    letter-spacing: 0.3px;
}

.btn-jap:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(230, 92, 0, 0.45);
}

.btn-jap:active {
    transform: scale(0.96);
}

.btn-jap-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-close-modal {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-300);
    cursor: pointer;
    padding: 4px 12px;
    transition: color var(--t-fast);
}

.btn-close-modal:hover {
    color: var(--text-700);
}

.jm-complete-msg {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: var(--r-md);
    border: 1px solid rgba(230, 92, 0, 0.25);
    margin-bottom: 12px;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.jm-complete-msg.show {
    display: flex;
}

.jm-complete-msg p {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 600;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes japPulse {
    0% {
        box-shadow: 0 4px 18px rgba(230, 92, 0, 0.38);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(230, 92, 0, 0);
    }

    100% {
        box-shadow: 0 4px 18px rgba(230, 92, 0, 0.38);
    }
}

.btn-jap.pulsing {
    animation: japPulse 0.4s ease;
}

@media (max-width: 480px) {
    .jm-modal {
        padding: 24px 18px 20px;
    }

    .mala-ring-wrap {
        width: 190px;
        height: 190px;
    }

    .jm-modal-title {
        font-size: 1.15rem;
    }

    .jm-card {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .mala-ring-wrap {
        width: 170px;
        height: 170px;
    }
}

.jm-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-300);
    font-family: var(--font-body);
    font-size: 1rem;
}

.jm-empty .icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.jm-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
    animation: jmTitleGlow 3s ease-in-out infinite;
}

@keyframes jmTitleGlow {

    0%,
    100% {
        text-shadow: 0 0 0 rgba(230, 92, 0, 0);
        transform: scale(1);
    }

    50% {
        text-shadow:
            0 0 10px rgba(230, 92, 0, 0.5),
            0 0 20px rgba(230, 92, 0, 0.3);
        transform: scale(1.04);
    }
}

.spiritual-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.spirit {
    position: absolute;
    font-size: 26px;
    opacity: .12;
    animation: floatSpiritual linear infinite;
}

.spirit:nth-child(1) {
    left: 5%;
    top: 80%;
    animation-duration: 20s;
}

.spirit:nth-child(2) {
    left: 15%;
    top: 40%;
    animation-duration: 18s;
}

.spirit:nth-child(3) {
    left: 25%;
    top: 60%;
    animation-duration: 22s;
}

.spirit:nth-child(4) {
    left: 35%;
    top: 75%;
    animation-duration: 25s;
}

.spirit:nth-child(5) {
    left: 45%;
    top: 30%;
    animation-duration: 19s;
}

.spirit:nth-child(6) {
    left: 55%;
    top: 50%;
    animation-duration: 23s;
}

.spirit:nth-child(7) {
    left: 65%;
    top: 20%;
    animation-duration: 21s;
}

.spirit:nth-child(8) {
    left: 75%;
    top: 70%;
    animation-duration: 24s;
}

.spirit:nth-child(9) {
    left: 85%;
    top: 40%;
    animation-duration: 18s;
}

.spirit:nth-child(10) {
    left: 30%;
    top: 10%;
    animation-duration: 20s;
}

.spirit:nth-child(11) {
    left: 60%;
    top: 85%;
    animation-duration: 26s;
}

.spirit:nth-child(12) {
    left: 90%;
    top: 15%;
    animation-duration: 22s;
}
@keyframes floatSpiritual {

    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: .08;
    }

    50% {
        transform: translateY(-80px) rotate(25deg) scale(1.2);
        opacity: .25;
    }

    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: .08;
    }

}
/* BLOG DETAIL PAGE CSS */
.vg-blog-detail-section {
    background: var(--body-bg);
    padding: 60px 0;
}

.vg-blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: flex-start;
}

.vg-blog-detail-left {
    min-width: 0;
}

.vg-blog-detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-900);
    line-height: 1.3;
    margin-bottom: 14px;
}

.vg-blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-500);
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border-light);
}

.vg-blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vg-blog-meta-item i {
    color: var(--primary);
    font-size: 0.85rem;
}

.vg-blog-meta-item strong {
    color: var(--text-700);
    font-weight: 600;
}

.vg-blog-meta-divider {
    color: var(--text-100);
}

.vg-blog-detail-body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-700);
    line-height: 1.85;
}

.vg-blog-detail-body h1,
.vg-blog-detail-body h2,
.vg-blog-detail-body h3,
.vg-blog-detail-body h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 28px 0 12px;
    font-weight: 700;
    line-height: 1.3;
}

.vg-blog-detail-body h2 {
    font-size: 1.45rem;
}

.vg-blog-detail-body h3 {
    font-size: 1.2rem;
}

.vg-blog-detail-body p {
    margin-bottom: 16px;
    color: var(--text-700);
}

.vg-blog-detail-body ul,
.vg-blog-detail-body ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.vg-blog-detail-body ul li,
.vg-blog-detail-body ol li {
    margin-bottom: 8px;
    color: var(--text-700);
}

.vg-blog-detail-body ul li::marker {
    color: var(--primary);
}

.vg-blog-detail-body strong {
    color: var(--text-900);
    font-weight: 700;
}

.vg-blog-detail-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.vg-blog-detail-right {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.vg-blog-detail-sidebar {
    background: var(--card-bg);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.vg-blog-sidebar-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.vg-blog-sidebar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.vg-blog-sidebar-img:hover {
    transform: scale(1.04);
}

.vg-blog-sidebar-info {
    padding: 20px;
}

.vg-blog-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 14px;
    line-height: 1.4;
}

.vg-blog-sidebar-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vg-blog-sidebar-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-500);
}

.vg-blog-sidebar-meta-row i {
    color: var(--primary);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .vg-blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .vg-blog-detail-right {
        position: static;
        order: -1;
    }

    .vg-blog-sidebar-img-wrap {
        aspect-ratio: 16/7;
    }
}

@media (max-width: 576px) {
    .vg-blog-detail-title {
        font-size: 1.5rem;
    }
}


/* POLICY PAGE CSS */
.vg-policy-section {
    background: var(--body-bg);
    padding: 60px 0;
}

.vg-policy-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.vg-policy-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-bg);
    border: 1px solid var(--border);
    color: var(--text-500);
    font-family: var(--font-body);
    font-size: 0.88rem;
    padding: 8px 18px;
    border-radius: var(--r-full);
    margin-bottom: 40px;
}

.vg-policy-meta i {
    color: var(--primary);
}

.vg-policy-block {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border-light);
}

.vg-policy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vg-policy-block h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.vg-policy-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--r-sm);
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.vg-policy-block p {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--text-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

.vg-policy-block ul,
.vg-policy-block ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.vg-policy-block ul li,
.vg-policy-block ol li {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--text-700);
    line-height: 1.8;
    margin-bottom: 8px;
}

.vg-policy-block ul li::marker {
    color: var(--primary);
}

.vg-policy-block a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.vg-policy-block a:hover {
    color: var(--primary-dark);
}

.vg-policy-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
    background: var(--primary-bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px 20px;
}

.vg-policy-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-700);
    font-weight: 600;
}

.vg-policy-contact span i {
    color: var(--primary);
}

.vg-policy-table-wrap {
    overflow-x: auto;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
}

.vg-policy-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.93rem;
}

.vg-policy-table thead tr {
    background: var(--primary);
    color: var(--white);
}

.vg-policy-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-heading);
}

.vg-policy-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background var(--t-fast);
}

.vg-policy-table tbody tr:last-child {
    border-bottom: none;
}

.vg-policy-table tbody tr:hover {
    background: var(--primary-bg);
}

.vg-policy-table tbody td {
    padding: 13px 18px;
    color: var(--text-700);
}

@media (max-width: 768px) {
    .vg-policy-block h2 {
        font-size: 1.05rem;
    }

    .vg-policy-contact {
        flex-direction: column;
        gap: 12px;
    }
}

.vg-policy-contact span a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--t-fast);
}

.vg-policy-contact span a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* PUJA SERVICE DETAIL PAGE CSS */
.vg-puja-detail-section {
    background: var(--body-bg);
    padding: 60px 0 40px;
}

.vg-puja-detail-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 56px;
}

.vg-puja-detail-img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--primary-bg);
}

.vg-puja-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg-puja-detail-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    background: var(--primary-bg);
}

.vg-puja-detail-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-900);
    line-height: 1.3;
    margin-bottom: 14px;
}

.vg-puja-detail-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 18px;
}

.vg-puja-detail-date {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-700);
    margin-bottom: 16px;
}

.vg-puja-detail-date i {
    color: var(--primary);
}

.vg-puja-date-expired {
    background: #fff3e0;
    border-color: #ffcc80;
    color: var(--primary);
    font-weight: 700;
}

.vg-puja-devotees {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.vg-puja-select-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 14px 32px;
}

.vg-puja-section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-900);
    text-align: center;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.vg-puja-section-icon {
    font-size: 1.4rem;
}

.vg-puja-desc-block {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
}

.vg-puja-desc-content {
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--text-700);
    line-height: 1.85;
}

.vg-puja-desc-content h2,
.vg-puja-desc-content h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 20px 0 10px;
    font-weight: 700;
}

.vg-puja-desc-content p {
    margin-bottom: 14px;
}

.vg-puja-desc-content ul {
    padding-left: 20px;
}

.vg-puja-desc-content ul li {
    margin-bottom: 8px;
}

.vg-puja-desc-content ul li::marker {
    color: var(--primary);
}

.vg-puja-benefits-section {
    background: var(--card-bg);
    padding: 60px 0;
}

.vg-puja-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vg-puja-benefit-card {
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t-med), transform var(--t-med);
}

.vg-puja-benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.vg-puja-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.1rem;
}

.vg-puja-benefit-body h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 6px;
}

.vg-puja-benefit-body p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-500);
    line-height: 1.6;
    margin: 0;
}

.vg-puja-packages-section {
    background: var(--card-bg);
    padding: 60px 0;
}

.vg-puja-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.vg-puja-pkg-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow var(--t-med), transform var(--t-med);
}

.vg-puja-pkg-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.vg-puja-pkg-featured {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-md);
}

.vg-puja-pkg-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: var(--r-full);
    white-space: nowrap;
}

.vg-puja-pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary);
}

.vg-puja-pkg-badge {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-900);
}

.vg-puja-pkg-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.vg-puja-pkg-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--primary-bg);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vg-puja-pkg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg-puja-pkg-img-icon {
    position: absolute;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
}

.vg-puja-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.vg-puja-pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-700);
    line-height: 1.6;
    margin-bottom: 10px;
}

.vg-puja-pkg-features li i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.vg-puja-pkg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: var(--r-full);
    text-decoration: none;
    transition: background var(--t-fast), transform var(--t-fast);
    margin-bottom: 10px;
}

.vg-puja-pkg-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.02);
}

.vg-puja-pkg-devotees {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-300);
    margin: 0;
}

.vg-puja-faq-section {
    background: var(--card-bg);
    padding: 60px 0;
}

.vg-puja-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vg-puja-faq-item {
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow var(--t-fast);
}

.vg-puja-faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.vg-puja-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-900);
    text-align: left;
    transition: color var(--t-fast);
}

.vg-puja-faq-item.active .vg-puja-faq-question {
    color: var(--primary);
}

.vg-puja-faq-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform var(--t-med);
}

.vg-puja-faq-item.active .vg-puja-faq-icon {
    transform: rotate(180deg);
}

.vg-puja-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
    padding: 0 22px;
}

.vg-puja-faq-item.active .vg-puja-faq-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}

.vg-puja-faq-answer p {
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-500);
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

@media (max-width: 991px) {
    .vg-puja-detail-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vg-puja-packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .vg-puja-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .vg-puja-detail-name {
        font-size: 1.4rem;
    }

    .vg-puja-section-title {
        font-size: 1.25rem;
    }

    .vg-puja-desc-block {
        padding: 24px 20px;
    }
}

/* PUJA BOOK PAGE CSS */
.vg-cart-section {
    background: var(--body-bg);
    padding: 60px 0;
}

.vg-cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: flex-start;
}

.vg-cart-service-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    padding: 24px;
    margin-bottom: 28px;
    position: relative;
}

.vg-cart-service-badge {
    position: absolute;
    top: -13px;
    left: 24px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--r-full);
}

.vg-cart-service-inner {
    display: flex;
    gap: 20px;
    align-items: center;
}

.vg-cart-service-img-wrap {
    width: 110px;
    height: 90px;
    border-radius: var(--r-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary-bg);
}

.vg-cart-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg-cart-service-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
}

.vg-cart-service-info {
    flex: 1;
}

.vg-cart-service-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 6px;
}

.vg-cart-service-place {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-500);
    margin-bottom: 12px;
}

.vg-cart-service-place i {
    color: var(--primary);
}

.vg-cart-service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vg-cart-pkg-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-bg);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--r-full);
    border: 1px solid var(--border);
}

.vg-cart-service-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.vg-cart-addons-wrap {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.vg-cart-addons-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-900);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.vg-cart-addons-title i {
    color: var(--primary);
}

.vg-cart-addons-sub {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-300);
    margin-bottom: 22px;
}

.vg-cart-addons-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vg-cart-addon-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--r-md);
    border: 1px solid var(--border-light);
    background: var(--body-bg);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.vg-cart-addon-item.vg-cart-addon-active {
    border-color: var(--primary);
    background: var(--primary-bg);
    box-shadow: var(--shadow-sm);
}

.vg-cart-addon-img-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--r-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
}

.vg-cart-addon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg-cart-addon-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
}

.vg-cart-addon-info {
    flex: 1;
    min-width: 0;
}

.vg-cart-addon-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 3px;
}

.vg-cart-addon-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-500);
    margin-bottom: 4px;
    line-height: 1.4;
}

.vg-cart-addon-price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.vg-cart-addon-action {
    flex-shrink: 0;
}

.vg-cart-addon-add-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    cursor: pointer;
    transition: background var(--t-fast), transform var(--t-fast);
    white-space: nowrap;
}

.vg-cart-addon-add-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.04);
}

.vg-cart-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--primary);
    border-radius: var(--r-full);
    overflow: hidden;
}

.vg-cart-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast);
}

.vg-cart-qty-btn:hover {
    background: var(--primary-dark);
}

.vg-cart-qty-val {
    min-width: 36px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    padding: 0 4px;
    line-height: 34px;
}

.vg-cart-right {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.vg-cart-summary {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 28px 24px;
}

.vg-cart-summary-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-900);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

.vg-cart-summary-title i {
    color: var(--primary);
}

.vg-cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.vg-cart-summary-addon-row {
    background: var(--primary-bg);
    border-radius: var(--r-sm);
    padding: 8px 10px;
    margin-bottom: 8px;
}

.vg-cart-summary-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-700);
    line-height: 1.5;
}

.vg-cart-summary-label small {
    color: var(--text-300);
    font-size: 0.78rem;
}

.vg-cart-summary-val {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-900);
    white-space: nowrap;
}

.vg-cart-summary-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.vg-cart-summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-900);
}

.vg-cart-summary-total {
    font-size: 1.5rem;
    color: var(--primary);
}

.vg-cart-summary-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: var(--primary-bg);
    border-radius: var(--r-md);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--text-500);
    line-height: 1.5;
    margin-bottom: 20px;
}

.vg-cart-summary-note i {
    color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.vg-cart-checkout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 24px;
    cursor: pointer;
    transition: background var(--t-fast), transform var(--t-fast);
    margin-bottom: 14px;
}

.vg-cart-checkout-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.vg-cart-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-500);
    font-family: var(--font-body);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color var(--t-fast);
}

.vg-cart-back-link:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .vg-cart-layout {
        grid-template-columns: 1fr;
    }

    .vg-cart-right {
        position: static;
        order: -1;
    }
}

@media (max-width: 576px) {
    .vg-cart-service-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .vg-cart-service-img-wrap {
        width: 100%;
        height: 160px;
    }

    .vg-cart-addon-item {
        flex-wrap: wrap;
    }
}

.vg-cart-addon-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: var(--r-md);
    border: 1px solid var(--border-light);
    background: var(--body-bg);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.vg-cart-addon-item.vg-cart-addon-active {
    border-color: var(--primary);
    background: var(--primary-bg);
    box-shadow: var(--shadow-sm);
}

.vg-cart-addon-img-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--r-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
}

.vg-cart-addon-info {
    min-width: 0;
}

.vg-cart-addon-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vg-cart-addon-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-500);
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vg-cart-addon-price {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.vg-cart-addon-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vg-cart-addon-add-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 14px;
    cursor: pointer;
    transition: background var(--t-fast);
    white-space: nowrap;
}

.vg-cart-addon-add-btn:hover {
    background: var(--primary-dark);
}

.vg-cart-qty-wrap {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary);
    border-radius: var(--r-full);
    overflow: hidden;
}

.vg-cart-qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast);
    flex-shrink: 0;
}

.vg-cart-qty-btn:hover {
    background: var(--primary-dark);
}

.vg-cart-qty-val {
    min-width: 28px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    line-height: 30px;
    padding: 0 2px;
}

@media (max-width: 480px) {
    .vg-cart-addon-item {
        grid-template-columns: 56px 1fr auto;
        gap: 10px;
        padding: 12px;
    }

    .vg-cart-addon-img-wrap {
        width: 56px;
        height: 56px;
    }

    .vg-cart-addon-name {
        font-size: 0.83rem;
    }

    .vg-cart-addon-desc {
        font-size: 0.74rem;
        -webkit-line-clamp: 2;
    }

    .vg-cart-addon-price {
        font-size: 0.85rem;
    }

    .vg-cart-addon-add-btn {
        padding: 7px 11px;
        font-size: 0.76rem;
    }

    .vg-cart-qty-btn {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .vg-cart-qty-val {
        min-width: 24px;
        font-size: 0.82rem;
        line-height: 26px;
    }
}

/* SANKALP FORM MODAL CSS */
.vg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-med), visibility var(--t-med);
}

.vg-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vg-modal-box {
    background: var(--white);
    border-radius: var(--r-xl);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px 28px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform var(--t-med);
}

.vg-modal-overlay.active .vg-modal-box {
    transform: translateY(0);
}

.vg-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--body-bg);
    color: var(--text-500);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), color var(--t-fast);
}

.vg-modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.vg-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.vg-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.vg-modal-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 6px;
}

.vg-modal-sub {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-500);
}

.vg-modal-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 22px;
}

.vg-modal-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vg-modal-label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-700);
    display: flex;
    align-items: center;
    gap: 7px;
}

.vg-modal-label i {
    color: var(--primary);
    font-size: 0.82rem;
}

.vg-modal-required {
    color: #e53e3e;
}

.vg-modal-input {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-900);
    background: var(--body-bg);
    outline: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.vg-modal-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 92, 0, 0.1);
    background: var(--white);
}

.vg-modal-error {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: #e53e3e;
    min-height: 16px;
}

.vg-modal-hint {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-300);
}

.vg-modal-summary-mini {
    background: var(--primary-bg);
    border-radius: var(--r-md);
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.vg-modal-summary-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-700);
    padding: 4px 0;
}

.vg-modal-summary-total {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-900);
    font-size: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 8px;
}

.vg-modal-pay-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background var(--t-fast), transform var(--t-fast);
}

.vg-modal-pay-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

@media (max-width: 480px) {
    .vg-modal-box {
        padding: 28px 20px 22px;
        border-radius: var(--r-lg);
    }
}

/* USER PROFILE PAGE CSS */
.vg-profile-section {
    min-height: calc(100vh - var(--header-height));
    background: var(--card-bg);
    padding: 48px 0 80px;
}

.vg-profile-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.vg-profile-heading {
    text-align: center;
    margin-bottom: 48px;
}

.vg-profile-heading-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-bg);
    border: 1px solid rgba(230, 92, 0, 0.2);
    padding: 6px 16px;
    border-radius: var(--r-full);
    margin-bottom: 12px;
}

.vg-profile-heading h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-900);
    line-height: 1.2;
    margin: 0;
}

.vg-profile-heading h1 span {
    color: var(--primary);
}

.vg-profile-card {
    background: var(--card-bg);
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.vg-profile-cover {
    height: 160px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent-gold) 100%);
    position: relative;
    overflow: hidden;
}

.vg-profile-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
}

.vg-profile-cover-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M30 0 L35 10 L45 10 L37 16 L40 27 L30 21 L20 27 L23 16 L15 10 L25 10 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.vg-profile-cover-deco {
    position: absolute;
    font-size: 120px;
    opacity: 0.05;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    line-height: 1;
}

.vg-profile-avatar-row {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    padding: 0 40px;
    margin-top: -56px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.vg-profile-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.vg-profile-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
    overflow: hidden;
}

.vg-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg-profile-avatar-placeholder {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-bg), #ffe8d6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--primary);
}

.vg-profile-avatar-edit {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: background var(--t-fast), transform var(--t-fast);
}

.vg-profile-avatar-edit:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.vg-profile-avatar-meta {
    padding-bottom: 8px;
    flex: 1;
}

.vg-profile-username {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-900);
    margin: 0 0 4px;
}

.vg-profile-useremail {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.vg-profile-useremail i {
    color: var(--primary);
    font-size: 12px;
}

.vg-profile-body {
    padding: 0 40px 40px;
}

.vg-profile-section-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.vg-profile-section-title i {
    font-size: 14px;
}

.vg-profile-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.vg-profile-info-item {
    background: var(--primary-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: box-shadow var(--t-fast), border-color var(--t-fast);
}

.vg-profile-info-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(230, 92, 0, 0.25);
}

.vg-profile-info-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.vg-profile-info-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-300);
    margin-bottom: 3px;
}

.vg-profile-info-val {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-700);
}

.vg-profile-form {
    background: var(--primary-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 28px;
}

.vg-profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.vg-profile-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vg-profile-field.full {
    grid-column: 1 / -1;
}

.vg-profile-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.vg-profile-label i {
    color: var(--primary);
    font-size: 12px;
}

.vg-profile-input,
.vg-profile-select {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-700);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    outline: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    width: 100%;
}

.vg-profile-input:focus,
.vg-profile-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 92, 0, 0.1);
}

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

.vg-profile-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.vg-profile-avatar-upload {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1.5px dashed var(--border);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: border-color var(--t-fast), background var(--t-fast);
    grid-column: 1 / -1;
}

.vg-profile-avatar-upload:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.vg-profile-avatar-upload-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.vg-profile-avatar-upload-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-700);
    margin-bottom: 2px;
}

.vg-profile-avatar-upload-text span {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-300);
}

.vg-profile-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.vg-profile-save-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: var(--r-full);
    padding: 11px 28px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: box-shadow var(--t-fast), transform var(--t-fast);
    box-shadow: 0 4px 14px rgba(230, 92, 0, 0.35);
}

.vg-profile-save-btn:hover {
    box-shadow: 0 6px 20px rgba(230, 92, 0, 0.45);
    transform: translateY(-1px);
}

.vg-profile-save-btn:active {
    transform: translateY(0);
}

.vg-profile-cancel-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-500);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-full);
    padding: 11px 24px;
    cursor: pointer;
    transition: border-color var(--t-fast), color var(--t-fast);
}

.vg-profile-cancel-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.vg-profile-divider {
    height: 1px;
    background: var(--border-light);
    margin: 32px 0;
}

.vg-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.vg-profile-stat {
    text-align: center;
    padding: 20px 16px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md);
    transition: box-shadow var(--t-fast);
}

.vg-profile-stat:hover {
    box-shadow: var(--shadow-sm);
}

.vg-profile-stat-val {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.vg-profile-stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .vg-profile-avatar-row {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        margin-top: -40px;
    }

    .vg-profile-body {
        padding: 0 20px 32px;
    }

    .vg-profile-info-grid,
    .vg-profile-form-grid {
        grid-template-columns: 1fr;
    }

    .vg-profile-stats {
        grid-template-columns: 1fr;
    }

    .vg-profile-form-actions {
        flex-direction: column-reverse;
    }

    .vg-profile-save-btn,
    .vg-profile-cancel-btn {
        width: 100%;
        justify-content: center;
    }
}

/*  MOBILE BOTTOM TAB BAR CSS */
.vg-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 20px rgba(230, 92, 0, 0.08);
    z-index: var(--z-header);
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom);
}

.vg-bottom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: stretch;
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.vg-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    text-decoration: none;
    color: var(--text-300);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    transition: color var(--t-fast);
    position: relative;
    padding: 8px 4px 4px;
    border: none;
    background: none;
    cursor: pointer;
}

.vg-bottom-nav-item i {
    font-size: 20px;
    line-height: 1;
    transition: transform var(--t-fast), color var(--t-fast);
}

.vg-bottom-nav-item span {
    font-size: 10.5px;
    white-space: nowrap;
}

.vg-bottom-nav-item:hover,
.vg-bottom-nav-item.active {
    color: var(--primary);
}

.vg-bottom-nav-item:hover i,
.vg-bottom-nav-item.active i {
    transform: translateY(-2px);
    color: var(--primary);
}

.vg-bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 var(--r-full) var(--r-full);
}

.vg-bottom-nav-item.center-btn {
    flex: 1;
}
.vg-bottom-nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 700;
}

.vg-bottom-nav-center-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(230, 92, 0, 0.45);
    margin-top: -20px;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    border: 3px solid var(--white);
}

.vg-bottom-nav-item.center-btn:hover .vg-bottom-nav-center-icon {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 24px rgba(230, 92, 0, 0.5);
}

.vg-bottom-nav-center span {
    color: var(--text-500);
    font-size: 10.5px;
}

@media (max-width: 960px) {
    .vg-bottom-nav {
        display: flex;
        align-items: stretch;
    }

    body>main {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 360px) {

    .vg-bottom-nav-item span,
    .vg-bottom-nav-center span {
        font-size: 9.5px;
    }

    .vg-bottom-nav-item i {
        font-size: 18px;
    }
}

