/* ==============================================================================
   VESTRA GLOBAL LIMITED
   Main Stylesheet
   Imperial Premium Design - Centered Composition
   ============================================================================== */

:root {
    --vg-color-bordeaux: #8B0000;
    --vg-color-bordeaux-dark: #6B0000;
    --vg-color-bordeaux-light: #A52A2A;
    --vg-color-gold: #C9A961;
    --vg-color-gold-light: #D4B87A;
    --vg-color-gold-dark: #B8860B;
    --vg-color-gradient: linear-gradient(135deg, var(--vg-color-gold) 0%, var(--vg-color-bordeaux) 100%);
    
    --vg-color-bg: #F5F5F5;
    --vg-color-bg-white: #FFFFFF;
    
    --vg-color-text: #2C2C2C;
    --vg-color-text-light: #666666;
    
    --vg-font-heading: 'Hadassah', serif;
    --vg-font-body: 'Schueler', serif;
    
    --vg-transition-fast: 0.3s ease;
    --vg-transition-medium: 0.5s ease;
    
    --vg-z-base: 1;
    --vg-z-header: 100;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--vg-font-body);
    background-color: var(--vg-color-bg);
    color: var(--vg-color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul { list-style: none; }

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

@font-face {
    font-family: 'Hadassah';
    src: url('Hadassah.ttf') format('truetype');
    font-weight: 400 700;
    font-display: swap;
}

@font-face {
    font-family: 'Schueler';
    src: url('Schueler-Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

h1, h2, h3, h4 {
    font-family: var(--vg-font-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* ==================== HEADER ==================== */
.vg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--vg-color-bg-white);
    z-index: var(--vg-z-header);
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
    transition: var(--vg-transition-fast);
    max-height: 70px;
}

.vg-header.scrolled {
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.1);
}

.vg-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    transition: var(--vg-transition-fast);
}

.vg-header.scrolled .vg-header-inner {
    padding: 0.5rem 2rem;
}

.vg-nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.vg-nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}

.vg-nav-link {
    font-family: var(--vg-font-body);
    font-size: 1.05rem;
    color: var(--vg-color-text);
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.vg-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--vg-color-gradient);
    transition: var(--vg-transition-fast);
}

.vg-nav-link:hover::after,
.vg-nav-link.vg-active::after {
    width: 100%;
}

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

.vg-logo {
    position: relative;
    bottom: -25px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 1.5rem;
    background: var(--vg-color-bg-white);
    border-radius: 8px;
    transition: var(--vg-transition-fast);
    padding: 0 5px 10px;
}

.vg-logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
    display: block;
}

.vg-header.scrolled .vg-logo {
    bottom: -20px;
}

.vg-header.scrolled .vg-logo img {
    height: 70px;
}

.vg-burger {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--vg-color-bordeaux);
    border-radius: 8px;
    padding: 10px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.vg-burger-line {
    width: 24px;
    height: 2px;
    background: var(--vg-color-gold);
    border-radius: 2px;
    transition: var(--vg-transition-fast);
}

/* ==================== VERTICAL STICKY BUTTONS ==================== */
.vg-sticky-actions {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: calc(var(--vg-z-header) - 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 0;
}

.vg-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 160px;
    border-radius: 10px 0 0 10px;
    font-family: var(--vg-font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: var(--vg-transition-fast);
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    padding: 1rem 0;
}

.vg-sticky-btn-lang {
    background: var(--vg-color-bg-white);
    color: var(--vg-color-bordeaux);
    border: 2px solid var(--vg-color-gold);
    border-right: none;
}

.vg-sticky-btn-lang:hover {
    background: var(--vg-color-gold);
    color: var(--vg-color-bg-white);
    transform: translateX(-5px);
}

.vg-sticky-btn-cta {
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    border: none;
}

.vg-sticky-btn-cta:hover {
    transform: translateX(-5px);
    box-shadow: -6px 6px 20px rgba(139, 0, 0, 0.4);
}

/* ==================== HERO SECTION ==================== */
.vg-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 220px 2rem 6rem;
    background: var(--vg-color-bg);
}

.vg-hero-svg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.vg-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.vg-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-family: var(--vg-font-heading);
    font-size: 0.95rem;
    color: var(--vg-color-bordeaux);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vg-hero-label::before,
.vg-hero-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--vg-color-gradient);
}

.vg-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--vg-color-text);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.vg-hero-title span {
    background: var(--vg-color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.vg-hero-subtitle {
    font-size: 1.15rem;
    color: var(--vg-color-text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vg-hero-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.vg-hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text);
}

.vg-hero-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--vg-color-bg-white);
    border: 2px solid var(--vg-color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-color-bordeaux);
    font-size: 1.5rem;
    transition: var(--vg-transition-fast);
}

.vg-hero-feature:hover .vg-hero-feature-icon {
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    border-color: transparent;
    transform: translateY(-5px);
}

.vg-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vg-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    font-family: var(--vg-font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--vg-transition-fast);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.vg-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
}

/* ==================== ANIMATIONS ==================== */
@keyframes vgFeatherFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
        opacity: 0.35;
    }
}

@keyframes vgFeatherFloatReverse {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(15px) rotate(-3deg);
        opacity: 0.35;
    }
}

@keyframes vgLineDraw {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.25;
    }
}

@keyframes vgShimmer {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.3;
    }
}

.vg-feather-anim {
    animation: vgFeatherFloat 6s ease-in-out infinite;
}

.vg-feather-anim-reverse {
    animation: vgFeatherFloatReverse 7s ease-in-out infinite;
}

.vg-line-anim {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: vgLineDraw 8s ease-out infinite;
}

.vg-shimmer-anim {
    animation: vgShimmer 4s ease-in-out infinite;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .vg-nav-left,
    .vg-nav-right {
        gap: 1.2rem;
    }
    
    .vg-nav-link {
        font-size: 0.95rem;
    }
    
    .vg-hero {
        padding-right: 4rem;
    }
}

@media (max-width: 768px) {
    .vg-burger {
        display: flex;
    }
    
    .vg-header-inner {
        grid-template-columns: 1fr;
        padding: 0.75rem 1.5rem;
    }
    
    .vg-nav-left,
    .vg-nav-right {
        display: none;
    }
    
    .vg-nav-mobile {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--vg-color-bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 2px solid var(--vg-color-gold);
        transform: translateY(-120%);
        transition: var(--vg-transition-medium);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: var(--vg-z-header);
        display: none;
    }
    
    .vg-nav-mobile.vg-active {
        transform: translateY(0);
        display: flex;
    }
    
    .vg-nav-mobile .vg-nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
    }
    
    .vg-logo {
        position: relative;
        bottom: 0;
        margin: 0 auto;
    }
    
    .vg-logo img {
        height: 60px;
    }
    
    .vg-sticky-actions {
        top: auto;
        bottom: 2rem;
        right: 1rem;
        transform: none;
        flex-direction: row;
    }
    
    .vg-sticky-btn {
        width: 100px;
        height: 44px;
        writing-mode: horizontal-tb;
        font-size: 0.75rem;
        letter-spacing: 1px;
        border-radius: 10px;
        border: 2px solid var(--vg-color-gold);
    }
    
    .vg-hero {
        padding: 180px 1.5rem 4rem;
    }
    
    .vg-hero-title {
        font-size: 2.2rem;
    }
    
    .vg-hero-subtitle {
        font-size: 1rem;
    }
    
    .vg-hero-features {
        gap: 2rem;
    }
    
    .vg-hero-label::before,
    .vg-hero-label::after {
        width: 25px;
    }
}

@media (max-width: 500px) {
    .vg-header-inner {
        padding: 0.75rem 1rem;
    }
    
    .vg-logo img {
        height: 50px;
    }
    
    .vg-hero-title {
        font-size: 1.8rem;
    }
    
    .vg-hero-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .vg-hero-features {
        gap: 1.5rem;
    }
    
    .vg-hero-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .vg-sticky-btn {
        width: 90px;
        height: 40px;
        font-size: 0.7rem;
    }
}





/* ==================== MODAL WINDOWS ==================== */
.vg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: var(--vg-z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--vg-transition-medium);
}

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

.vg-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--vg-color-bg-white);
    border-radius: 16px;
    z-index: 999;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: var(--vg-transition-medium);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.3);
}

.vg-modal.vg-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.vg-modal-header {
    padding: 2rem;
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vg-modal-title {
    font-family: var(--vg-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--vg-color-bg-white);
}

.vg-modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--vg-color-bg-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--vg-transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vg-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.vg-modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

/* ==================== QUOTE FORM MODAL ==================== */
.vg-quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vg-form-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 20px;
}

.vg-form-heading {
    font-family: var(--vg-font-heading);
    font-size: 1.1rem;
    color: var(--vg-color-bordeaux);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--vg-color-gold);
}

.vg-form-heading i {
    color: var(--vg-color-gold);
}

.vg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.vg-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vg-form-group-full {
    grid-column: span 2;
}

.vg-form-label {
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: var(--vg-color-text);
    font-weight: 500;
}

.vg-form-label .vg-required {
    color: var(--vg-color-bordeaux);
}

.vg-form-input,
.vg-form-select,
.vg-form-textarea {
    padding: 0.9rem 1rem;
    background: var(--vg-color-bg);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    color: var(--vg-color-text);
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    transition: var(--vg-transition-fast);
}

.vg-form-input:focus,
.vg-form-select:focus,
.vg-form-textarea:focus {
    outline: none;
    border-color: var(--vg-color-gold);
    background: var(--vg-color-bg-white);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.vg-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.vg-form-consent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--vg-color-bg);
    border-radius: 10px;
    border-left: 4px solid var(--vg-color-gold);
    margin-top: 25px;
    margin-bottom: 25px;
}

.vg-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.vg-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--vg-color-bordeaux);
    cursor: pointer;
    flex-shrink: 0;
}

.vg-checkbox-label {
    font-family: var(--vg-font-body);
    font-size: 0.8rem;
    color: var(--vg-color-text);
    line-height: 1.5;
    cursor: pointer;
}

.vg-checkbox-label a {
    color: var(--vg-color-bordeaux);
    text-decoration: underline;
    font-weight: 600;
}

.vg-checkbox-label a:hover {
    color: var(--vg-color-gold);
}

.vg-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    font-family: var(--vg-font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--vg-transition-fast);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.vg-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
}

.vg-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.vg-form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.vg-form-success.vg-active {
    display: block;
    animation: vgFadeInUp 0.5s ease;
}

.vg-success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--vg-color-gold) 0%, var(--vg-color-bordeaux) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-color-bg-white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.vg-success-title {
    font-family: var(--vg-font-heading);
    font-size: 1.75rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 1rem;
}

.vg-success-text {
    font-family: var(--vg-font-body);
    font-size: 1.05rem;
    color: var(--vg-color-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.vg-success-steps {
    text-align: left;
    background: var(--vg-color-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--vg-color-gold);
}

.vg-success-steps-title {
    font-family: var(--vg-font-heading);
    font-size: 1.1rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 1rem;
}

.vg-success-steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vg-success-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text);
}

.vg-success-steps-list li i {
    color: var(--vg-color-gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.vg-success-auto-close {
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: var(--vg-color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vg-success-auto-close i {
    color: var(--vg-color-gold);
}

/* ==================== LEGAL MODALS ==================== */
.vg-legal-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vg-legal-block {
    padding: 1.5rem;
    background: var(--vg-color-bg);
    border-radius: 10px;
    border-left: 4px solid var(--vg-color-gold);
}

.vg-legal-heading {
    font-family: var(--vg-font-heading);
    font-size: 1.1rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vg-legal-heading i {
    color: var(--vg-color-gold);
}

.vg-legal-text {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text);
    line-height: 1.7;
}

.vg-legal-text strong {
    color: var(--vg-color-bordeaux);
}

/* ==================== RESPONSIVE MODALS ==================== */
@media (max-width: 768px) {
    .vg-modal {
        width: 95%;
        max-width: 95%;
    }
    
    .vg-modal-header {
        padding: 1.5rem;
    }
    
    .vg-modal-body {
        padding: 1.5rem;
    }
    
    .vg-form-row {
        grid-template-columns: 1fr;
    }
    
    .vg-form-group-full {
        grid-column: span 1;
    }
    
    .vg-form-consent {
        padding: 1rem;
    }
    
    .vg-checkbox-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 500px) {
    .vg-modal-title {
        font-size: 1.2rem;
    }
    
    .vg-form-heading {
        font-size: 1rem;
    }
    
    .vg-success-title {
        font-size: 1.4rem;
    }
    
    .vg-success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}



/* ==================== FOOTER ==================== */
.vg-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1f 50%, #0f0f0f 100%);
    color: var(--vg-color-bg-white);
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.vg-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 Q20 20 10 30 Q0 40 20 50 Q30 60 50 50 Q60 40 50 30 Q40 20 30 0' fill='%23C9A961' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.vg-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vg-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Footer Column */
.vg-footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vg-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--vg-color-bg-white);
    border-radius: 12px;
    border: 2px solid var(--vg-color-gold);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.2);
}

.vg-footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.vg-footer-desc {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.vg-footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.vg-social-link {
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid var(--vg-color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-color-gold);
    font-size: 1.2rem;
    transition: var(--vg-transition-fast);
}

.vg-social-link:hover {
    background: var(--vg-color-gradient);
    border-color: transparent;
    color: var(--vg-color-bg-white);
    transform: translateY(-5px);
}

/* Footer Heading */
.vg-footer-heading {
    font-family: var(--vg-font-heading);
    font-size: 1.1rem;
    color: var(--vg-color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--vg-color-bordeaux);
}

/* Footer Links */
.vg-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vg-footer-link {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--vg-transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vg-footer-link::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--vg-color-gold);
    border-radius: 50%;
    opacity: 0;
    transition: var(--vg-transition-fast);
}

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

.vg-footer-link:hover::before {
    opacity: 1;
}

/* Footer Contact Info */
.vg-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vg-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.vg-contact-item i {
    color: var(--vg-color-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.vg-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--vg-transition-fast);
}

.vg-contact-item a:hover {
    color: var(--vg-color-gold);
}

/* Newsletter Form */
.vg-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vg-newsletter-text {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.vg-newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.vg-newsletter-input {
    flex: 1;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    color: var(--vg-color-bg-white);
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    transition: var(--vg-transition-fast);
}

.vg-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vg-newsletter-input:focus {
    outline: none;
    border-color: var(--vg-color-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.vg-newsletter-btn {
    padding: 0.9rem 1.5rem;
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    font-family: var(--vg-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--vg-transition-fast);
    white-space: nowrap;
}

.vg-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

/* Footer Bottom */
.vg-footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.vg-footer-copyright {
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.vg-footer-copyright strong {
    color: var(--vg-color-gold);
}

.vg-footer-legal {
    display: flex;
    gap: 2rem;
}

.vg-footer-legal-link {
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--vg-transition-fast);
}

.vg-footer-legal-link:hover {
    color: var(--vg-color-gold);
}

/* ==================== RESPONSIVE FOOTER ==================== */
@media (max-width: 1024px) {
    .vg-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .vg-footer {
        padding: 4rem 1.5rem 2rem;
    }
    
    .vg-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vg-footer-col {
        text-align: center;
        align-items: center;
    }
    
    .vg-footer-social {
        justify-content: center;
    }
    
    .vg-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .vg-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .vg-newsletter-input-group {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .vg-footer-logo img {
        height: 60px;
    }
    
    .vg-footer-heading {
        font-size: 1rem;
    }
    
    .vg-footer-copyright,
    .vg-footer-legal-link {
        font-size: 0.85rem;
    }
}




/* ==================== ABOUT SECTION ==================== */
.vg-about {
    background: var(--vg-color-bg-white);
    padding: 6rem 2rem;
    position: relative;
}

.vg-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, rgba(139, 0, 0, 0.03) 100%);
    pointer-events: none;
}

.vg-about-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vg-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vg-section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--vg-font-heading);
    font-size: 0.95rem;
    color: var(--vg-color-bordeaux);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vg-section-label::before,
.vg-section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--vg-color-gradient);
}

.vg-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--vg-color-text);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vg-section-title span {
    background: var(--vg-color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vg-section-description {
    font-family: var(--vg-font-body);
    font-size: 1.1rem;
    color: var(--vg-color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Grid */
.vg-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.vg-about-card {
    padding: 2.5rem;
    background: var(--vg-color-bg);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--vg-transition-fast);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vg-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--vg-color-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--vg-transition-fast);
}

.vg-about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.12);
    border-color: var(--vg-color-gold);
}

.vg-about-card:hover::before {
    transform: scaleX(1);
}

.vg-about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--vg-color-bg-white);
    border: 2px solid var(--vg-color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-color-bordeaux);
    font-size: 2rem;
    transition: var(--vg-transition-fast);
}

.vg-about-card:hover .vg-about-icon {
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    border-color: transparent;
    transform: rotateY(360deg);
}

.vg-about-card-title {
    font-family: var(--vg-font-heading);
    font-size: 1.25rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 1rem;
    font-weight: 600;
}

.vg-about-card-text {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text-light);
    line-height: 1.7;
}

/* Mission Block */
.vg-mission-block {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
    border-radius: 16px;
    border-left: 5px solid var(--vg-color-gold);
    border-right: 5px solid var(--vg-color-bordeaux);
    position: relative;
    text-align: center;
}

.vg-mission-icon {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--vg-color-gold);
    opacity: 0.2;
}

.vg-mission-text {
    font-family: var(--vg-font-body);
    font-size: 1.15rem;
    color: var(--vg-color-text);
    line-height: 1.8;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

/* Stats Block */
.vg-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--vg-color-gradient);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.2);
}

.vg-stat-item {
    text-align: center;
    color: var(--vg-color-bg-white);
}

.vg-stat-number {
    font-family: var(--vg-font-heading);
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.vg-stat-label {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ==================== RESPONSIVE ABOUT ==================== */
@media (max-width: 1024px) {
    .vg-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vg-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .vg-about {
        padding: 5rem 1.5rem;
    }
    
    .vg-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vg-about-card {
        padding: 2rem;
    }
    
    .vg-mission-block {
        padding: 2rem;
    }
    
    .vg-mission-icon {
        display: none;
    }
    
    .vg-about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .vg-stat-number {
        font-size: 2.2rem;
    }
    
    .vg-section-description {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .vg-about-card-title {
        font-size: 1.1rem;
    }
    
    .vg-about-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .vg-mission-text {
        font-size: 1.05rem;
    }
}


/* ==================== CONTACTS SECTION (UNIQUE DESIGN) ==================== */
.vg-contacts {
    background: linear-gradient(180deg, var(--vg-color-bg-white) 0%, var(--vg-color-bg) 100%);
    padding: 7rem 2rem;
    position: relative;
}

.vg-contacts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vg-contacts-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vg-contacts .vg-section-label {
    color: var(--vg-color-gold);
}

.vg-contacts .vg-section-title {
    color: var(--vg-color-text);
}

.vg-contacts .vg-section-title span {
    background: var(--vg-color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vg-contacts .vg-section-description {
    color: var(--vg-color-text-light);
    max-width: 700px;
}

/* Contact Cards Grid */
.vg-contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
}

.vg-contact-card {
    background: var(--vg-color-bg-white);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--vg-transition-fast);
    position: relative;
    overflow: hidden;
}

.vg-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--vg-color-gradient);
    transform: scaleX(0);
    transition: var(--vg-transition-fast);
}

.vg-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
    border-color: var(--vg-color-gold);
}

.vg-contact-card:hover::before {
    transform: scaleX(1);
}

.vg-contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(139, 0, 0, 0.15) 100%);
    border: 2px solid var(--vg-color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-color-bordeaux);
    font-size: 1.75rem;
    transition: var(--vg-transition-fast);
}

.vg-contact-card:hover .vg-contact-card-icon {
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    border-color: transparent;
    transform: rotateY(360deg) scale(1.1);
}

.vg-contact-card-title {
    font-family: var(--vg-font-heading);
    font-size: 0.9rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vg-contact-card-value {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text);
    line-height: 1.6;
}

.vg-contact-card-value a {
    color: var(--vg-color-bordeaux);
    transition: var(--vg-transition-fast);
}

.vg-contact-card-value a:hover {
    color: var(--vg-color-gold);
}

/* Centered Contact Form */
.vg-contact-form-container {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 3.5rem;
    background: var(--vg-color-bg-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

.vg-contact-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--vg-color-gradient);
    border-radius: 20px;
    opacity: 0;
    transition: var(--vg-transition-fast);
    z-index: -1;
}

.vg-contact-form-container:hover::before {
    opacity: 0.1;
}

.vg-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vg-form-header-title {
    font-family: var(--vg-font-heading);
    font-size: 1.75rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 0.75rem;
}

.vg-form-header-text {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text-light);
}

.vg-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vg-contact-form .vg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.vg-contact-form .vg-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vg-contact-form .vg-form-label {
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: var(--vg-color-text);
    font-weight: 500;
}

.vg-contact-form .vg-form-label .vg-required {
    color: var(--vg-color-bordeaux);
}

.vg-contact-form .vg-form-input,
.vg-contact-form .vg-form-textarea {
    padding: 1rem 1.25rem;
    background: var(--vg-color-bg);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 10px;
    color: var(--vg-color-text);
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    transition: var(--vg-transition-fast);
}

.vg-contact-form .vg-form-input:focus,
.vg-contact-form .vg-form-textarea:focus {
    outline: none;
    border-color: var(--vg-color-gold);
    background: var(--vg-color-bg-white);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.vg-contact-form .vg-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.vg-contact-form .vg-form-consent {
    background: rgba(201, 169, 97, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--vg-color-gold);
}

.vg-contact-form .vg-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.vg-contact-form .vg-checkbox-item:last-child {
    margin-bottom: 0;
}

.vg-contact-form .vg-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--vg-color-bordeaux);
    cursor: pointer;
}

.vg-contact-form .vg-checkbox-label {
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: var(--vg-color-text);
    line-height: 1.5;
    cursor: pointer;
}

.vg-contact-form .vg-checkbox-label a {
    color: var(--vg-color-bordeaux);
    text-decoration: underline;
    font-weight: 600;
}

.vg-contact-form .vg-checkbox-label a:hover {
    color: var(--vg-color-gold);
}

.vg-contact-form .vg-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    font-family: var(--vg-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--vg-transition-fast);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
    margin-top: 0.5rem;
}

.vg-contact-form .vg-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
}

/* Success Message */
.vg-contact-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.vg-contact-success.vg-active {
    display: block;
    animation: vgFadeInUp 0.5s ease;
}

.vg-contact-success .vg-success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--vg-color-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-color-bg-white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.vg-contact-success .vg-success-title {
    font-family: var(--vg-font-heading);
    font-size: 1.75rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 1rem;
}

.vg-contact-success .vg-success-text {
    font-family: var(--vg-font-body);
    font-size: 1.05rem;
    color: var(--vg-color-text-light);
    line-height: 1.6;
}

/* ==================== RESPONSIVE CONTACTS ==================== */
@media (max-width: 1024px) {
    .vg-contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vg-contacts {
        padding: 5rem 1.5rem;
    }
    
    .vg-contact-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .vg-contact-form-container {
        padding: 2.5rem 1.5rem;
    }
    
    .vg-contact-form .vg-form-row {
        grid-template-columns: 1fr;
    }
    
    .vg-form-header-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 500px) {
    .vg-contact-card {
        padding: 1.5rem 1rem;
    }
    
    .vg-contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .vg-contact-form-container {
        padding: 2rem 1.25rem;
    }
    
    .vg-form-header-title {
        font-size: 1.3rem;
    }
}




/* ==================== SERVICES SECTION ==================== */
.vg-services {
    background: var(--vg-color-bg);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.vg-services::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.vg-services-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Alternating Service Rows */
.vg-service-rows {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin: 5rem 0;
}

.vg-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Reverse order for even rows */
.vg-service-row:nth-child(even) .vg-service-content {
    order: -1;
}

/* Service Image Wrapper */
.vg-service-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.15);
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.vg-service-image-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--vg-color-gold);
    border-radius: 16px;
    z-index: -1;
    transition: var(--vg-transition-fast);
}

.vg-service-row:hover .vg-service-image-wrapper::after {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
}

.vg-service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--vg-transition-medium);
}

.vg-service-row:hover .vg-service-image {
    transform: scale(1.03);
}

/* Service Content */
.vg-service-content {
    padding: 1rem 0;
}

.vg-service-number {
    font-family: var(--vg-font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 169, 97, 0.15);
    line-height: 1;
    margin-bottom: -1rem;
    position: relative;
    z-index: 0;
}

.vg-service-title {
    font-family: var(--vg-font-heading);
    font-size: 2rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.vg-service-description {
    font-family: var(--vg-font-body);
    font-size: 1.05rem;
    color: var(--vg-color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.vg-service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vg-service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text);
}

.vg-service-features li i {
    color: var(--vg-color-gold);
    font-size: 1rem;
}

/* Supplementary Services Grid */
.vg-supplementary-services {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.vg-supplementary-title {
    text-align: center;
    font-family: var(--vg-font-heading);
    font-size: 1.5rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 3rem;
}

.vg-sup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.vg-sup-card {
    background: var(--vg-color-bg-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
    transition: var(--vg-transition-fast);
}

.vg-sup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.1);
    border-color: var(--vg-color-gold);
}

.vg-sup-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(139, 0, 0, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-color-bordeaux);
    font-size: 1.5rem;
    transition: var(--vg-transition-fast);
}

.vg-sup-card:hover .vg-sup-icon {
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
}

.vg-sup-card-title {
    font-family: var(--vg-font-heading);
    font-size: 1.1rem;
    color: var(--vg-color-text);
    margin-bottom: 0.75rem;
}

.vg-sup-card-text {
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: var(--vg-color-text-light);
    line-height: 1.6;
}

/* ==================== RESPONSIVE SERVICES ==================== */
@media (max-width: 1024px) {
    .vg-service-row {
        gap: 3rem;
    }
    
    .vg-sup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vg-services {
        padding: 5rem 1.5rem;
    }
    
    .vg-service-rows {
        gap: 4rem;
    }
    
    .vg-service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* On mobile, image always comes first */
    .vg-service-row:nth-child(even) .vg-service-content {
        order: 0;
    }
    
    .vg-service-image {
        height: 300px;
    }
    
    .vg-service-title {
        font-size: 1.75rem;
    }
    
    .vg-sup-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .vg-service-number {
        font-size: 3rem;
    }
    
    .vg-service-image {
        height: 250px;
    }
}



/* ==================== PRODUCTS SECTION (BENTO GRID + TABS) ==================== */
.vg-products {
    background: linear-gradient(180deg, var(--vg-color-bg) 0%, var(--vg-color-bg-white) 100%);
    padding: 7rem 2rem;
    position: relative;
}

.vg-products::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse at center bottom, rgba(139, 0, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.vg-products-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Category Tabs */
.vg-products-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 4rem 0 3rem;
    padding: 0.5rem;
    background: var(--vg-color-bg-white);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.vg-tab-btn {
    padding: 0.85rem 1.75rem;
    background: transparent;
    border: none;
    border-radius: 40px;
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--vg-color-text-light);
    cursor: pointer;
    transition: var(--vg-transition-fast);
    white-space: nowrap;
}

.vg-tab-btn:hover {
    color: var(--vg-color-bordeaux);
}

.vg-tab-btn.vg-active {
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

/* Bento Grid */
.vg-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

/* Card sizes */
.vg-bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--vg-transition-fast);
    border: 2px solid transparent;
}

.vg-bento-card.vg-large {
    grid-column: span 2;
    grid-row: span 2;
}

.vg-bento-card.vg-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.vg-bento-card.vg-small {
    grid-column: span 1;
    grid-row: span 1;
}

.vg-bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--vg-color-gold);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.2);
}

/* Card Image */
.vg-bento-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--vg-transition-medium);
}

.vg-bento-card:hover .vg-bento-image {
    transform: scale(1.08);
}

/* Card Overlay */
.vg-bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--vg-transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.vg-bento-card:hover .vg-bento-overlay {
    opacity: 1;
}

.vg-bento-card.vg-large .vg-bento-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.3) 50%, transparent 100%);
}

/* Card Content */
.vg-bento-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-color-bg-white);
    font-size: 1.25rem;
    transition: var(--vg-transition-fast);
}

.vg-bento-card:hover .vg-bento-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--vg-color-gradient);
}

.vg-bento-title {
    font-family: var(--vg-font-heading);
    font-size: 1.5rem;
    color: var(--vg-color-bg-white);
    margin-bottom: 0.75rem;
    transform: translateY(20px);
    transition: var(--vg-transition-fast);
}

.vg-bento-card:hover .vg-bento-title {
    transform: translateY(0);
}

.vg-bento-card.vg-large .vg-bento-title {
    font-size: 2rem;
}

.vg-bento-text {
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--vg-transition-fast);
    transition-delay: 0.1s;
}

.vg-bento-card:hover .vg-bento-text {
    opacity: 1;
    transform: translateY(0);
}

.vg-bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--vg-color-gold);
    font-family: var(--vg-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--vg-transition-fast);
    transition-delay: 0.2s;
}

.vg-bento-card:hover .vg-bento-link {
    opacity: 1;
    transform: translateY(0);
}

.vg-bento-link i {
    transition: var(--vg-transition-fast);
}

.vg-bento-link:hover i {
    transform: translateX(5px);
}

/* ==================== RESPONSIVE PRODUCTS ==================== */
@media (max-width: 1024px) {
    .vg-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .vg-bento-card.vg-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .vg-bento-card.vg-medium {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .vg-products {
        padding: 5rem 1.5rem;
    }
    
    .vg-products-tabs {
        gap: 0.5rem;
        border-radius: 30px;
    }
    
    .vg-tab-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .vg-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 1.25rem;
    }
    
    .vg-bento-card.vg-large,
    .vg-bento-card.vg-medium,
    .vg-bento-card.vg-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .vg-bento-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.4) 60%, transparent 100%);
    }
    
    .vg-bento-title,
    .vg-bento-text,
    .vg-bento-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .vg-bento-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 500px) {
    .vg-tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .vg-bento-grid {
        grid-auto-rows: 240px;
    }
}



/* ==================== MARKETS SECTION (ATMOSPHERIC) ==================== */
.vg-markets {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1f 50%, #0f0f0f 100%);
    padding: 0;
    overflow: hidden;
    min-height: 90vh;
}

.vg-markets-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    position: relative;
}

/* Left Content Panel */
.vg-markets-content {
    padding: 8rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.vg-markets-label {
    font-family: var(--vg-font-heading);
    font-size: 0.9rem;
    color: var(--vg-color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vg-markets-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--vg-color-gold);
}

.vg-markets-title {
    font-family: var(--vg-font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--vg-color-bg-white);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
}

.vg-markets-title span {
    color: var(--vg-color-gold);
    display: block;
}

.vg-markets-description {
    font-family: var(--vg-font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Market Stats Grid */
.vg-markets-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.vg-market-stat {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--vg-color-gold);
    border-radius: 8px;
    transition: var(--vg-transition-fast);
}

.vg-market-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.vg-stat-value {
    font-family: var(--vg-font-heading);
    font-size: 2.5rem;
    color: var(--vg-color-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.vg-stat-label {
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Button */
.vg-markets-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: var(--vg-color-gradient);
    color: var(--vg-color-bg-white);
    font-family: var(--vg-font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--vg-transition-fast);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
    width: fit-content;
}

.vg-markets-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.4);
}

/* Right Image Panel */
.vg-markets-visual {
    position: relative;
    overflow: hidden;
}

.vg-markets-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.vg-markets-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(139, 0, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Info Cards */
.vg-market-cards {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
}

.vg-market-info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--vg-color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--vg-transition-fast);
}

.vg-market-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.vg-market-card-title {
    font-family: var(--vg-font-heading);
    font-size: 1.1rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vg-market-card-title i {
    color: var(--vg-color-gold);
}

.vg-market-card-text {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text);
    line-height: 1.6;
}

/* Decorative Elements */
.vg-markets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* ==================== RESPONSIVE MARKETS ==================== */
@media (max-width: 1024px) {
    .vg-markets-inner {
        grid-template-columns: 1fr;
    }
    
    .vg-markets-content {
        padding: 6rem 3rem;
        min-height: auto;
    }
    
    .vg-markets-visual {
        min-height: 50vh;
    }
    
    .vg-market-cards {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        padding: 0 3rem 3rem;
    }
}

@media (max-width: 768px) {
    .vg-markets-content {
        padding: 5rem 2rem;
    }
    
    .vg-markets-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vg-stat-value {
        font-size: 2rem;
    }
    
    .vg-market-cards {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 500px) {
    .vg-markets-title {
        font-size: 2rem;
    }
    
    .vg-markets-cta {
        width: 100%;
        justify-content: center;
    }
}





/* ==================== PARTNERS SECTION ==================== */
.vg-partners {
    background: var(--vg-color-bg-white);
    padding: 7rem 2rem;
    position: relative;
}

.vg-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(201, 169, 97, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 0, 0, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.vg-partners-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Philosophy Block */
.vg-partners-philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.vg-partners-philosophy-text h3 {
    font-family: var(--vg-font-heading);
    font-size: 1.75rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.vg-partners-philosophy-text p {
    font-family: var(--vg-font-body);
    font-size: 1rem;
    color: var(--vg-color-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.vg-partners-philosophy-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.vg-philosophy-stat {
    padding: 1.5rem;
    background: var(--vg-color-bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--vg-color-gold);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.08);
    transition: var(--vg-transition-fast);
}

.vg-philosophy-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
}

.vg-philosophy-stat-value {
    font-family: var(--vg-font-heading);
    font-size: 2.5rem;
    color: var(--vg-color-bordeaux);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.vg-philosophy-stat-label {
    font-family: var(--vg-font-body);
    font-size: 0.85rem;
    color: var(--vg-color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Table Wrapper */
.vg-partners-table-wrapper {
    background: var(--vg-color-bg-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.2);
    overflow: hidden;
    margin-bottom: 3rem;
}

/* Table Header */
.vg-table-header {
    background: var(--vg-color-gradient);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.vg-table-header-title {
    font-family: var(--vg-font-heading);
    font-size: 1.5rem;
    color: var(--vg-color-bg-white);
    font-weight: 600;
}

.vg-table-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--vg-color-bg-white);
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.vg-table-header-badge i {
    color: var(--vg-color-gold-light);
}

/* Table */
.vg-partners-table {
    width: 100%;
    border-collapse: collapse;
}

.vg-partners-table thead th {
    padding: 1.25rem 2rem;
    background: rgba(139, 0, 0, 0.03);
    font-family: var(--vg-font-heading);
    font-size: 0.85rem;
    color: var(--vg-color-bordeaux);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: left;
    border-bottom: 2px solid var(--vg-color-gold);
    font-weight: 600;
}

.vg-partners-table thead th:first-child {
    width: 60px;
    text-align: center;
}

.vg-partners-table thead th:last-child {
    text-align: center;
    width: 150px;
}

.vg-partners-table tbody tr {
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    transition: var(--vg-transition-fast);
}

.vg-partners-table tbody tr:hover {
    background: linear-gradient(to right, rgba(201, 169, 97, 0.08) 0%, rgba(139, 0, 0, 0.03) 100%);
}

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

.vg-partners-table td {
    padding: 1.5rem 2rem;
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text);
    vertical-align: middle;
}

.vg-partners-table td:first-child {
    text-align: center;
    font-family: var(--vg-font-heading);
    font-weight: 700;
    color: var(--vg-color-gold);
    font-size: 1.1rem;
}

.vg-partners-table td:last-child {
    text-align: center;
}

/* Company Name Cell */
.vg-company-name {
    font-family: var(--vg-font-heading);
    font-size: 1.05rem;
    color: var(--vg-color-bordeaux);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.vg-company-sub {
    font-size: 0.85rem;
    color: var(--vg-color-text-light);
}

/* Location Cell */
.vg-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vg-location-flag {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vg-color-bordeaux);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.vg-location-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.vg-location-country {
    font-weight: 600;
    color: var(--vg-color-text);
}

.vg-location-region {
    font-size: 0.8rem;
    color: var(--vg-color-text-light);
}

/* Specialization Cell */
.vg-specialization {
    font-size: 0.9rem;
    color: var(--vg-color-text);
    line-height: 1.5;
}

/* Status Badge */
.vg-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(139, 0, 0, 0.1) 100%);
    border: 1px solid var(--vg-color-gold);
    border-radius: 20px;
    font-family: var(--vg-font-heading);
    font-size: 0.75rem;
    color: var(--vg-color-bordeaux);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vg-status-badge i {
    color: var(--vg-color-gold);
    font-size: 0.7rem;
}

/* Region Group Header */
.vg-region-header td {
    background: rgba(201, 169, 97, 0.05);
    padding: 1rem 2rem;
    font-family: var(--vg-font-heading);
    font-size: 0.9rem;
    color: var(--vg-color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.vg-region-header td::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--vg-color-gold);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* Table Footer Note */
.vg-table-footer {
    padding: 2rem 2.5rem;
    background: rgba(139, 0, 0, 0.02);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--vg-font-body);
    font-size: 0.9rem;
    color: var(--vg-color-text-light);
}

.vg-table-footer i {
    color: var(--vg-color-gold);
    font-size: 1.2rem;
}

/* ==================== RESPONSIVE PARTNERS ==================== */
@media (max-width: 1024px) {
    .vg-partners-philosophy {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .vg-partners-table thead th,
    .vg-partners-table td {
        padding: 1rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .vg-partners {
        padding: 5rem 1.5rem;
    }
    
    .vg-partners-philosophy {
        padding: 2rem;
    }
    
    .vg-partners-table-wrapper {
        overflow-x: auto;
    }
    
    .vg-partners-table {
        min-width: 700px;
    }
    
    .vg-table-header {
        padding: 1.5rem;
    }
    
    .vg-table-header-title {
        font-size: 1.2rem;
    }
    
    .vg-philosophy-stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .vg-partners-philosophy-stats {
        grid-template-columns: 1fr;
    }
    
    .vg-table-header {
        flex-direction: column;
        align-items: flex-start;
    }
}





/* ==================== WHY US SECTION (EDITORIAL STYLE) ==================== */
.vg-whyus {
    background: var(--vg-color-bg);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.vg-whyus::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(201, 169, 97, 0.05) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.vg-whyus-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.vg-whyus-content {
    padding-right: 2rem;
}

.vg-whyus-label {
    font-family: var(--vg-font-heading);
    font-size: 0.9rem;
    color: var(--vg-color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vg-whyus-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--vg-color-gold);
}

.vg-whyus-title {
    font-family: var(--vg-font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--vg-color-bordeaux);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
}

.vg-whyus-title::after {
    content: '#1';
    position: absolute;
    top: -2rem;
    right: 0;
    font-size: 8rem;
    color: rgba(201, 169, 97, 0.1);
    font-weight: 700;
    z-index: -1;
}

.vg-whyus-subtitle {
    font-family: var(--vg-font-body);
    font-size: 1.15rem;
    color: var(--vg-color-text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Advantages List */
.vg-advantages-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vg-advantage-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--vg-color-bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--vg-color-gold);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.08);
    transition: var(--vg-transition-fast);
}

.vg-advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
    border-left-color: var(--vg-color-bordeaux);
}

.vg-advantage-number {
    font-family: var(--vg-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vg-color-gold);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
}

.vg-advantage-content h4 {
    font-family: var(--vg-font-heading);
    font-size: 1.25rem;
    color: var(--vg-color-bordeaux);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vg-advantage-content p {
    font-family: var(--vg-font-body);
    font-size: 0.95rem;
    color: var(--vg-color-text-light);
    line-height: 1.6;
}

/* Right Visual - Person */
.vg-whyus-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 700px;
}

.vg-whyus-person {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(139, 0, 0, 0.2));
}

/* Decorative Elements */
.vg-whyus-decor-circle {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 2px solid var(--vg-color-gold);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.vg-whyus-decor-lines {
    position: absolute;
    bottom: 20%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1;
}

.vg-decor-line {
    height: 2px;
    background: var(--vg-color-gradient);
    border-radius: 2px;
}

.vg-decor-line:nth-child(1) { width: 100px; }
.vg-decor-line:nth-child(2) { width: 150px; }
.vg-decor-line:nth-child(3) { width: 80px; }

/* Stats Badge */
.vg-whyus-stats-badge {
    position: absolute;
    bottom: -12%;
    right: 33%;
    background: var(--vg-color-gradient);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    z-index: 3;
    text-align: center;
}

.vg-whyus-stats-badge-value {
    font-family: var(--vg-font-heading);
    font-size: 1.8rem;
    color: var(--vg-color-bg-white);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.vg-whyus-stats-badge-label {
    font-family: var(--vg-font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
}

/* ==================== RESPONSIVE WHY US ==================== */
@media (max-width: 1024px) {
    .vg-whyus-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vg-whyus-content {
        padding-right: 0;
    }
    
    .vg-whyus-visual {
        min-height: 500px;
        order: -1;
    }
    
    .vg-whyus-title::after {
        font-size: 6rem;
        top: -1.5rem;
    }
    .vg-whyus-stats-badge {
        position: absolute;
        bottom: -9%;
        right: 34%;
    }
}

@media (max-width: 768px) {
    .vg-whyus {
        padding: 5rem 1.5rem;
    }
    
    .vg-whyus-title {
        font-size: 2.5rem;
    }
    
    .vg-whyus-title::after {
        font-size: 4rem;
        top: -1rem;
    }
    
    .vg-advantage-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vg-advantage-number {
        font-size: 2rem;
        width: auto;
    }
    
    .vg-whyus-visual {
        min-height: 400px;
    }
    
    .vg-whyus-decor-circle {
        width: 200px;
        height: 200px;
    }
    
    .vg-whyus-stats-badge {
        padding: 1rem 1.5rem;
    }
    
    .vg-whyus-stats-badge-value {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .vg-whyus-title {
        font-size: 2rem;
    }
    
    .vg-whyus-title::after {
        display: none;
    }
    
    .vg-advantage-item {
        padding: 1rem;
    }
    
    .vg-whyus-stats-badge {
        bottom: -7%;
        right: 50%;
        transform: translateX(50%);
    }
}



