@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

/* Global Variables */
:root {
  /* Primary Colors */
  --primary-green: #4CAF50;
  --primary-pink: #E91E63;
  --primary-blue: #1976D2;
  /* Accent Colors */
  --accent-purple: #673AB7;
  --accent-orange: #FF9800;
  --accent-yellow: #FFC107;
  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #555555;
  --text-light: #666666;
}


html {
    overflow-x: hidden;
}

html, body {
    font-family: 'Arial', sans-serif;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: clip;
}

body {
    margin: 0;
    padding: 0;
}


.vvoa-main-header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.vvoa-main-header-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(76, 175, 80, 0.08) 0%, 
        rgba(129, 199, 132, 0.05) 25%,
        rgba(233, 30, 99, 0.05) 50%,
        rgba(129, 199, 132, 0.05) 75%,
        rgba(76, 175, 80, 0.08) 100%);
    background-size: 200% 100%;
    animation: vvoa-header-aurora 8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.vvoa-main-header-container.vvoa-header-scrolled::before {
    opacity: 1;
}

@keyframes vvoa-header-aurora {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.vvoa-main-header-container.vvoa-header-scrolled {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.15),
                0 0 0 1px rgba(76, 175, 80, 0.1);
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.vvoa-navigation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 5%;
    margin: 0 auto;
    position: relative;
}

.vvoa-brand-logo-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.vvoa-logo-alberta-growth-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(76, 175, 80, 0.2);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.vvoa-logo-alberta-growth-container::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    inset: -3px;
    background: conic-gradient(from 0deg, 
        rgba(76, 175, 80, 0.6) 0deg, 
        rgb(255, 255, 255, 0.4) 120deg,
        rgb(255, 255, 255, 0.4) 240deg,
        rgba(76, 175, 80, 0.6) 360deg);
    border-radius: 19px;
    z-index: -1;
    opacity: 0;
    animation: vvoa-logo-orbital-rotation 8s linear infinite;
    transition: opacity 0.6s ease;
}

@keyframes vvoa-logo-orbital-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vvoa-logo-svg-image {
    width: 110px;
    height: 110px;
    padding: 18px;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 2px 8px rgba(76, 175, 80, 0.3));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vvoa-logo-alberta-growth-container:hover::before {
    opacity: 1;
}

.vvoa-logo-alberta-growth-container:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(76, 175, 80, 0.4);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.vvoa-logo-alberta-growth-container:hover .vvoa-logo-svg-image {
    transform: scale(1.1) rotate(-5deg);
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 4px 12px rgba(76, 175, 80, 0.5));
}

.vvoa-main-navigation-menu {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0;
    position: relative;
}

/* Mobile Navigation Styles */
.vvoa-mobile-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 2px solid rgba(76, 175, 80, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vvoa-mobile-nav-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(233, 30, 99, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vvoa-mobile-nav-toggle:hover::before {
    opacity: 1;
}

.vvoa-hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    position: relative;
    z-index: 2;
    border-radius: 2px;
}

.vvoa-mobile-nav-toggle.active .vvoa-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.vvoa-mobile-nav-toggle.active .vvoa-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.vvoa-mobile-nav-toggle.active .vvoa-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.vvoa-mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.vvoa-mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vvoa-mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 100px 30px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.vvoa-mobile-nav-menu.active {
    right: 0;
}

.vvoa-mobile-nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(25, 118, 210, 0.1) 0%, transparent 50%);
    animation: vvoa-mobile-bg-flow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes vvoa-mobile-bg-flow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.vvoa-mobile-nav-item {
    list-style: none;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vvoa-mobile-nav-menu.active .vvoa-mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.vvoa-mobile-nav-menu.active .vvoa-mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.vvoa-mobile-nav-menu.active .vvoa-mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.vvoa-mobile-nav-menu.active .vvoa-mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
.vvoa-mobile-nav-menu.active .vvoa-mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
.vvoa-mobile-nav-menu.active .vvoa-mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }
.vvoa-mobile-nav-menu.active .vvoa-mobile-nav-item:nth-child(6) { transition-delay: 0.6s; }
.vvoa-mobile-nav-menu.active .vvoa-mobile-nav-item:nth-child(7) { transition-delay: 0.7s; }
.vvoa-mobile-nav-menu.active .vvoa-mobile-nav-item:nth-child(8) { transition-delay: 0.8s; }

.vvoa-mobile-nav-link {
    display: block;
    padding: 18px 25px;
    text-decoration: none;
    color: #2E7D32;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
}

.vvoa-mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(76, 175, 80, 0.2), 
        rgba(233, 30, 99, 0.1), 
        rgba(76, 175, 80, 0.2));
    transition: left 0.5s ease;
}

.vvoa-mobile-nav-link:hover::before {
    left: 100%;
}

.vvoa-mobile-nav-link:hover {
    color: #1B5E20;
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.vvoa-mobile-nav-dropdown {
    position: relative;
}

.vvoa-mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.vvoa-mobile-dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.vvoa-mobile-nav-dropdown.open .vvoa-mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.vvoa-mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 10px;
    margin-top: 10px;
}

.vvoa-mobile-nav-dropdown.open .vvoa-mobile-dropdown-content {
    max-height: 200px;
}

.vvoa-mobile-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 5px;
}

.vvoa-mobile-dropdown-link:hover {
    background: rgba(76, 175, 80, 0.15);
    color: #2E7D32;
    transform: translateX(5px);
}

/* Mobile Particles */
.vvoa-mobile-nav-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.vvoa-mobile-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #4CAF50, rgba(76, 175, 80, 0.3));
    border-radius: 50%;
    opacity: 0;
    animation: vvoa-mobile-particle-float 8s ease-in-out infinite;
}

.vvoa-mobile-particle:nth-child(even) {
    background: radial-gradient(circle, #E91E63, rgba(233, 30, 99, 0.3));
    animation-duration: 10s;
}

.vvoa-mobile-particle:nth-child(3n) {
    background: radial-gradient(circle, #1976D2, rgba(25, 118, 210, 0.3));
    animation-duration: 12s;
}

@keyframes vvoa-mobile-particle-float {
    0%, 100% { 
        transform: translateY(100vh) translateX(0px) scale(0); 
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
        transform: translateY(80vh) translateX(10px) scale(1); 
    }
    50% { 
        transform: translateY(40vh) translateX(-10px) scale(1.2); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(10vh) translateX(5px) scale(1); 
    }
    100% { 
        transform: translateY(-10vh) translateX(0px) scale(0); 
        opacity: 0; 
    }
}

.vvoa-mobile-close-button {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(233, 30, 99, 0.1);
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #E91E63;
    font-size: 18px;
}

.vvoa-mobile-close-button:hover {
    background: rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.5);
    transform: scale(1.1) rotate(90deg);
}

/* Mobile Responsive Breakpoints */
@media (max-width: 1024px) {
    .vvoa-main-navigation-menu {
        display: none;
    }

    .vvoa-mobile-nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
        margin-left: auto;
    }

    .vvoa-navigation-wrapper {
        justify-content: space-between;
        position: relative;
    }
}

@media (max-width: 768px) {
    .vvoa-navigation-wrapper {
        padding: 15px 4%;
    }

    .vvoa-brand-main-title {
        font-size: 20px;
    }

    .vvoa-brand-subtitle-descriptor {
        font-size: 10px;
    }

    .vvoa-logo-alberta-growth-container {
        width: 80px;
        height: 80px;
        border: none;
    }

    .vvoa-mobile-nav-menu {
        width: 85%;
        padding: 80px 25px 25px;
    }
}

@media (max-width: 480px) {
    .vvoa-brand-main-title {
        font-size: 18px;
    }

    .vvoa-mobile-nav-menu {
        width: 90%;
        padding: 70px 20px 20px;
    }

    .vvoa-mobile-nav-link {
        padding: 15px 20px;
        font-size: 15px;
    }
}

.vvoa-nav-menu-item {
    position: relative;
}

.vvoa-nav-link-primary {
    display: flex;
    align-items: center;
    padding: 15px 22px;
    text-decoration: none;
    color: #2E7D32;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.vvoa-nav-link-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.1) 0%,
        rgba(233, 30, 99, 0.05) 50%,
        rgba(76, 175, 80, 0.1) 100%);
    transform: translateX(-125%) skewX(-15deg);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.vvoa-nav-link-primary:hover::before {
    transform: translateX(125%) skewX(-15deg);
}

.vvoa-nav-link-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, 
        #4CAF50 0%, 
        #66BB6A 25%, 
        #E91E63 50%, 
        #66BB6A 75%, 
        #4CAF50 100%);
    background-size: 200% 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-50%) scale(0%);
    animation: vvoa-nav-gradient-shift 1s ease-in-out infinite;
}

@keyframes vvoa-nav-gradient-shift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.vvoa-nav-link-primary:hover::after {
    transform: translateX(-50%) scale(100%);
    height: 4px;
}

.vvoa-nav-link-primary:hover {
    color: #1B5E20;
    transform: translateY(-3px);
    text-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.vvoa-dropdown-indicator-arrow {
    margin-left: 6px;
    font-size: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.vvoa-nav-link-primary:hover .vvoa-dropdown-indicator-arrow {
    transform: rotate(180deg) scale(1.2);
    color: #E91E63;
}

/* Dropdown Menu Styles */
.vvoa-nav-dropdown {
    position: relative;
}

.vvoa-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.15);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.vvoa-nav-dropdown:hover .vvoa-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vvoa-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #2E7D32;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.vvoa-dropdown-link:last-child {
    border-bottom: none;
}

.vvoa-dropdown-link:hover {
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.1) 0%,
        rgba(233, 30, 99, 0.05) 100%);
    color: #1B5E20;
    transform: translateX(5px);
    padding-left: 25px;
}

.vvoa-nav-dropdown:hover .vvoa-dropdown-indicator-arrow {
    transform: rotate(180deg) scale(1.2);
    color: #E91E63;
}









.vvoa-footer-section-main-container {
    background: linear-gradient(135deg, #2E7D32 0%, #388E3C 25%, #4CAF50 50%, #66BB6A 75%, #2E7D32 100%);
    background-size: 400% 400%;
    animation: vvoa-footer-growth-energy 20s ease-in-out infinite;
    color: white;
    padding: 80px 0 40px;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

@keyframes vvoa-footer-growth-energy {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.vvoa-footer-alberta-landscape-silhouette {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        transparent 100%);
    clip-path: polygon(
        0% 100%, 
        0% 70%, 
        10% 60%, 
        15% 75%, 
        25% 50%, 
        30% 80%, 
        40% 40%, 
        45% 70%, 
        55% 35%, 
        60% 75%, 
        70% 45%, 
        75% 80%, 
        85% 55%, 
        90% 75%, 
        100% 60%, 
        100% 100%
    );
    animation: vvoa-alberta-landscape-sway 25s ease-in-out infinite;
}

@keyframes vvoa-alberta-landscape-sway {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(-4px); }
    75% { transform: translateY(-6px); }
}

.vvoa-footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.vvoa-footer-brand-section {
    flex: 1;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vvoa-footer-logo-constellation-container {
    width: 180px;
    height: 180px;
    margin-bottom: 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vvoa-footer-logo-constellation-container::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: conic-gradient(from 0deg, 
        rgba(255, 255, 255, 0.4) 0deg, 
        transparent 60deg, 
        rgba(255, 255, 255, 0.4) 120deg, 
        transparent 180deg, 
        rgba(255, 255, 255, 0.4) 240deg, 
        transparent 300deg, 
        rgba(255, 255, 255, 0.4) 360deg);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: vvoa-footer-logo-orbital 15s linear infinite;
    transition: opacity 0.8s ease;
}

@keyframes vvoa-footer-logo-orbital {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vvoa-footer-logo-constellation-container:hover::before {
    opacity: 1;
}

.vvoa-footer-logo-constellation-container:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
}

.vvoa-footer-alberta-plant-network {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
    transition: all 0.6s ease;
}

.vvoa-footer-logo-constellation-container:hover .vvoa-footer-alberta-plant-network {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.4));
}

.vvoa-footer-organization-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.vvoa-footer-navigation-sections {
    display: flex;
    align-items: center;
    flex: 2;
    gap: 80px;
}

.vvoa-footer-nav-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vvoa-footer-nav-column-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.vvoa-footer-nav-column-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #E91E63, #FF6B9D);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vvoa-footer-nav-column:hover .vvoa-footer-nav-column-title::after {
    width: 60px;
}

.vvoa-footer-nav-links-list {
    list-style: none;
    text-align: center;
}

.vvoa-footer-nav-link-item {
    margin-bottom: 15px;
}

.vvoa-footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.vvoa-footer-nav-link:hover {
    color: white;
    transform: translateX(10px);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.vvoa-footer-connect-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.vvoa-footer-social-constellation {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.vvoa-footer-social-orbital-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.vvoa-footer-social-orbital-link::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: conic-gradient(from 0deg, 
        rgba(255, 255, 255, 0.5) 0deg, 
        transparent 180deg, 
        rgba(255, 255, 255, 0.5) 360deg);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    animation: vvoa-social-orbital-spin 8s linear infinite;
    transition: opacity 0.4s ease;
}

@keyframes vvoa-social-orbital-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vvoa-footer-social-orbital-link:hover::before {
    opacity: 1;
}

.vvoa-footer-social-orbital-link:hover {
    transform: scale(1.2) rotate(10deg);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.vvoa-footer-contact-info {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.vvoa-footer-contact-info a {
    color: #ffafca;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vvoa-footer-contact-info a:hover {
    color: white;
    text-shadow: 0 2px 8px rgba(255, 107, 157, 0.5);
}

.vvoa-footer-copyright-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 60px;
    margin-left: 10px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
    .vvoa-sponsor-logos-constellation-grid {
        gap: 80px;
    }

    .vvoa-footer-content-wrapper {
        gap: 60px;
    }

    .vvoa-footer-navigation-sections {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .vvoa-sponsor-logos-constellation-grid {
        flex-direction: column;
        gap: 60px;
    }

    .vvoa-partnership-connection-lines {
        display: none;
    }

    .vvoa-footer-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .vvoa-footer-navigation-sections {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .vvoa-sponsors-section-main-container {
        padding: 80px 0 60px;
    }

    .vvoa-sponsors-showcase-container {
        padding: 0 4%;
    }

    .vvoa-sponsors-main-heading {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .vvoa-sponsor-logo-orbital-container {
        width: 100%;
        max-width: 350px;
        height: 180px;
        padding: 30px;
    }

    .vvoa-footer-section-main-container {
        padding: 60px 0 30px;
    }

    .vvoa-footer-content-wrapper {
        padding: 0 4%;
        gap: 40px;
    }

    .vvoa-footer-logo-constellation-container {
        width: 150px;
        height: 150px;
    }

    .vvoa-footer-alberta-plant-network {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .vvoa-floating-gratitude-elements {
        display: none;
    }

    .vvoa-footer-copyright-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vvoa-sponsor-logo-orbital-container {
        padding: 25px;
        height: 160px;
    }

    .vvoa-sponsor-brand-logo-display {
        width: 120px;
        height: 70px;
        font-size: 12px;
    }

    .vvoa-footer-logo-constellation-container {
        width: 120px;
        height: 120px;
    }

    .vvoa-footer-alberta-plant-network {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .vvoa-footer-social-constellation {
        justify-content: center;
    }
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.1s !important;
    }
}