/* Base Styles */
.muttstock-involvement-hero {
    position: relative;
    min-height: 100%;
    max-height: max-content;
    padding-bottom: 125px;
    color: var(--white);
    background: var(--primary);
    overflow: hidden;
}

/* Background Elements */
.muttstock-involvement-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.muttstock-involvement-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(114, 80, 168, 0.95) 0%,
        rgba(91, 64, 134, 0.95) 100%
    );
    mix-blend-mode: multiply;
}

.muttstock-involvement-hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Shapes and Decorative Elements */
.muttstock-involvement-shape-circle-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 208, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: muttstock-involvement-rotate 30s linear infinite;
}

.muttstock-involvement-shape-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    bottom: -100px;
    left: -100px;
    animation: muttstock-involvement-rotate 20s linear infinite reverse;
}

.muttstock-involvement-shape-line-1,
.muttstock-involvement-shape-line-2 {
    position: absolute;
    height: 2px;
    width: 200px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.muttstock-involvement-shape-line-1 {
    top: 30%;
    right: 10%;
    transform: rotate(45deg);
}

.muttstock-involvement-shape-line-2 {
    bottom: 40%;
    left: 5%;
    transform: rotate(-45deg);
}

/* Floating Elements */
.muttstock-involvement-floating-elements i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: muttstock-involvement-float 10s ease-in-out infinite;
}

.muttstock-involvement-float-1 {
    top: 20%;
    left: 10%;
    font-size: 2rem;
}

.muttstock-involvement-float-2 {
    top: 40%;
    right: 15%;
    font-size: 1.8rem;
    animation-delay: 2s;
}

.muttstock-involvement-float-3 {
    bottom: 25%;
    left: 20%;
    font-size: 2.2rem;
    animation-delay: 4s;
}

/* Container Layout */
.muttstock-involvement-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 5% 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Content Styles */
.muttstock-involvement-hero-content {
    flex: 1;
    max-width: 600px;
}

.muttstock-involvement-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.muttstock-involvement-badge-icon {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.muttstock-involvement-hero-title {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.muttstock-involvement-title-line {
    display: block;
}

.muttstock-involvement-title-emphasis {
    display: block;
    color: var(--accent);
    position: relative;
}

.muttstock-involvement-title-emphasis::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.muttstock-involvement-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
}

/* Hero Features */
/* CTA Buttons */
.muttstock-involvement-hero-cta {
    display: flex;
    gap: 1.5rem;
}
.muttstock-hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media screen and (max-width: 1200px) {
    .muttstock-hero-features {
        justify-content: center;
    }
}
@media screen and (max-width: 786px) {
    .muttstock-hero-features {
        flex-direction: column;
    }
}


.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: max-content;
    height: 40px;
    padding: 0 10px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--white);
}


/* Visual Section Styles */
.muttstock-involvement-hero-visual {
    flex: 1;
    position: relative;
}

.muttstock-involvement-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.muttstock-involvement-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.muttstock-involvement-image {
    width: 100%;
    height: auto;
    min-height: 600px;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.muttstock-involvement-image-wrapper:hover .muttstock-involvement-image {
    transform: scale(1);
}

.muttstock-involvement-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(114, 80, 168, 0.5)
    );
}

/* Image Decorators */
.muttstock-involvement-image-decorators {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

.muttstock-involvement-decorator-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.muttstock-involvement-decorator-line.top,
.muttstock-involvement-decorator-line.bottom {
    height: 1px;
    width: calc(100% - 40px);
    left: 20px;
}

.muttstock-involvement-decorator-line.top { top: 20px; }
.muttstock-involvement-decorator-line.bottom { bottom: 20px; }

.muttstock-involvement-decorator-line.left,
.muttstock-involvement-decorator-line.right {
    width: 1px;
    height: calc(100% - 40px);
    top: 20px;
}

.muttstock-involvement-decorator-line.left { left: 20px; }
.muttstock-involvement-decorator-line.right { right: 20px; }

.muttstock-involvement-decorator-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.muttstock-involvement-decorator-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0;
}

.muttstock-involvement-decorator-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: 0;
    border-bottom: 0;
}

.muttstock-involvement-decorator-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: 0;
    border-top: 0;
}

.muttstock-involvement-decorator-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: 0;
    border-top: 0;
}

/* Quick Facts */
.muttstock-involvement-quick-facts {
    position: absolute;
    left: -20px;
    right: -20px;
    bottom: -30px;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.muttstock-involvement-fact {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.muttstock-involvement-fact:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.muttstock-involvement-fact i {
    color: var(--white);
    border-radius: 50%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
}

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

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}


/* Animations */
@keyframes muttstock-involvement-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes muttstock-involvement-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-10px, -10px) rotate(5deg);
    }
}

@keyframes muttstock-involvement-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}


/* Enhanced Hover States */
.muttstock-involvement-cta-btn:hover {
    transform: translateY(-3px);
}

.muttstock-involvement-cta-btn.primary:hover {
    box-shadow: 0 10px 20px rgba(239, 77, 152, 0.3);
}

.muttstock-involvement-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.muttstock-involvement-image-container:hover .muttstock-involvement-decorator-line {
    background: rgba(255, 255, 255, 0.3);
}

.muttstock-involvement-image-container:hover .muttstock-involvement-decorator-corner {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .muttstock-involvement-hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 175px;
    }

    .muttstock-involvement-hero-content {
        max-width: 800px;
    }

    .muttstock-involvement-title-emphasis::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .muttstock-involvement-hero-description {
        border-left: none;
        padding-left: 0;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .muttstock-involvement-hero-stats {
        justify-content: center;
    }

    .muttstock-involvement-hero-cta {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .muttstock-involvement-hero {
        padding: 60px 5% 80px;
        padding-bottom: 200px;
    }
    .muttstock-involvement-hero-title {
        font-size: 3rem;
    }

    .muttstock-involvement-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .muttstock-involvement-stat-separator {
        display: none;
    }

    .muttstock-involvement-hero-cta {
        flex-direction: column;
    }

    .muttstock-involvement-quick-facts {
        flex-direction: column;
        align-items: center;
        bottom: -80px;
    }
}





/* --------------------------------------- Communities Section */
/* Base Styles */
.muttstock-communities-section {
    position: relative;
    padding: 8rem 5%;
    background: var(--white);
    overflow: hidden;
}
.muttstock-communities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 90%,
        rgba(114, 80, 168, 0.2)
    );
    z-index: 1;
}

/* Background Elements */
.muttstock-communities-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.muttstock-communities-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(114, 80, 168, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(114, 80, 168, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(114, 80, 168, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(114, 80, 168, 0.05) 75%);
    background-size: 20px 20px;
    opacity: 0.5;
}

.muttstock-communities-shapes .muttstock-communities-shape {
    position: absolute;
    border-radius: 50%;
}

.muttstock-communities-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 208, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: muttstock-communities-rotate 30s linear infinite;
}

.muttstock-communities-shape.shape-2 {
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(114, 80, 168, 0.1);
    bottom: -100px;
    left: -100px;
    animation: muttstock-communities-rotate 20s linear infinite reverse;
}

.muttstock-communities-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(239, 77, 152, 0.1) 0%, transparent 70%);
    top: 30%;
    left: 20%;
    animation: muttstock-communities-float 6s ease-in-out infinite;
}

/* Floating Icons */
.muttstock-communities-floating i {
    position: absolute;
    color: rgba(114, 80, 168, 0.1);
    animation: muttstock-communities-float 10s ease-in-out infinite;
}

.muttstock-communities-icon-1 {
    top: 20%;
    left: 10%;
    font-size: 2rem;
}

.muttstock-communities-icon-2 {
    top: 40%;
    right: 15%;
    font-size: 1.8rem;
    animation-delay: 2s;
}

.muttstock-communities-icon-3 {
    bottom: 25%;
    left: 20%;
    font-size: 2.2rem;
    animation-delay: 4s;
}

/* Container Layout */
.muttstock-communities-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.muttstock-communities-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.muttstock-communities-title {
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.muttstock-communities-title-emphasis {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.muttstock-communities-title-emphasis::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.muttstock-communities-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Impact Cards */
.muttstock-communities-impact {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.muttstock-impact-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.muttstock-impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.muttstock-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.muttstock-impact-card:hover::before {
    transform: scaleX(1);
}

.muttstock-impact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--white);
    font-size: 1.5rem;
}

.muttstock-impact-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 15px;
    opacity: 0.3;
    animation: muttstock-impact-pulse 2s infinite;
}

/* Impact Card Content Styles */
.muttstock-impact-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.muttstock-impact-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Impact Features */
.muttstock-impact-features {
    list-style: none;
}

.muttstock-impact-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.muttstock-impact-features li:hover {
    background: rgba(114, 80, 168, 0.05);
    transform: translateX(10px);
}

.muttstock-impact-features li i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Community Partners */
.muttstock-communities-partners {
    padding: 4rem 0;
    border-top: 1px solid rgba(114, 80, 168, 0.1);
}

.muttstock-partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.muttstock-partners-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.muttstock-partners-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.muttstock-partners {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.muttstock-partners img {
    object-fit: cover;
    max-width: 500px;
    width: 50%;
}

.muttstock-partners-grid {
    height: max-content;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.muttstock-partner-item {
    width: 200px;
    height: 200px;
    padding: 20px;
    background: var(--white);
    border-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}
.muttstock-partner-item:nth-child(0) {
    z-index: 1;
}
.muttstock-partner-item:nth-child(1) {
    z-index: 2;
}
.muttstock-partner-item:nth-child(2) {
    z-index: 3;
}
.muttstock-partner-item:nth-child(3) {
    z-index: 4;
}

.muttstock-partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(270deg, transparent, rgba(114, 80, 168, 0.2));
    transition: opacity 0.3s ease;
    opacity: 0;
}

.muttstock-partner-item:hover {
    transform: translateX(-10px);
}

.muttstock-partner-item:hover::before {
    opacity: 1;
}

.muttstock-partner-description {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: max-content;
    font-size: 1rem;
    color: #666;
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    line-height: 1.4;
    opacity: 0;
    
    transition: all 0.3s ease;
}

.muttstock-partner-item:hover .muttstock-partner-description {
    opacity: 1;
    transform: translate(100%, -50%);
}

.muttstock-partner-item i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.muttstock-partner-item span {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}


/* Responsive Styles */
@media screen and (min-width: 1440px) {
    .muttstock-partner-item::before {
        opacity: 1;
    }
    .muttstock-partner-description {
        opacity: 1;
        transform: translate(100%, -50%);
    }
}
@media screen and (max-width: 1200px) {
    .muttstock-partner-item {
        border-radius: 20px;
    }
    .muttstock-partner-item:hover {
        transform: translateY(-10px);
    }
    .muttstock-partner-description {
        top: 0;
    }
    .muttstock-partner-item:hover .muttstock-partner-description {
        transform: none;
    }
}
@media screen and (max-width: 768px) {
    .muttstock-partners {
        flex-direction: column;
    }

    .muttstock-partners-grid {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .muttstock-partners img {
        width: 100%;
        max-width: none;
    }

    .muttstock-impact-benefits {
        align-items: center;
    }

    .muttstock-partner-item {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
}




/* ----- Join Us CTA Section */
.forms-section {
    position: relative;
    height: max-content;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    overflow: hidden;
}
.forms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Main Container */
.forms-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

/* Forms Grid */
.forms-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}


.form-links {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 200px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-links:hover {
   transform: translateY(-10px);
   background: rgba(255, 255, 255, 0.1);
   box-shadow: 
       0 20px 40px rgba(0, 0, 0, 0.2),
       0 15px 20px rgba(0, 0, 0, 0.1);
}

.form-links::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(45deg,
       transparent,
       rgba(255, 255, 255, 0.1),
       transparent
   );
   transform: translateX(-100%);
   transition: transform 0.6s ease;
}

.form-links:hover::before {
   transform: translateX(100%);
}

/* Icon Styling */
.form-link-icon {
   width: 80px;
   height: 80px;
   background: var(--accent);
   border-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2.5rem;
   color: var(--white);
   transition: all 0.3s ease;
   position: relative;
   transform: rotate(-5deg);
}

.form-links:hover .form-link-icon {
   transform: rotate(5deg) scale(1.1);
}

.form-link-icon::before {
   content: '';
   position: absolute;
   inset: -5px;
   border: 2px dashed var(--accent);
   border-radius: 25px;
   opacity: 0;
   transition: all 0.3s ease;
}

.form-links:hover .form-link-icon::before {
   inset: -10px;
   opacity: 0.5;
   animation: spinIcon 10s linear infinite;
}

@keyframes spinIcon {
   to { transform: rotate(360deg); }
}

/* Text Styling */
.form-links span {
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--white);
   text-align: center;
   background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}


/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .forms-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* Dynamic Light Effect */
.form-card-light {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(255, 255, 255, 0.15),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-card:hover .form-card-light {
    opacity: 1;
}

/* Animations */
@keyframes muttstock-communities-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes muttstock-communities-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}

@keyframes muttstock-impact-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .muttstock-communities-impact {
        flex-direction: column;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .muttstock-communities-title {
        font-size: 2.5rem;
    }

}
@media screen and (max-width: 480px) {
    .muttstock-communities-section {
        padding: 0;
        padding-top: 4rem;
    }
}

.forms-section-title-container {
    position: relative;
    text-align: center;
    padding: 2rem 0;
}

.forms-section-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Glowing underline */
.forms-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent),
        var(--secondary),
        var(--accent),
        transparent
    );
    border-radius: 2px;
    animation: lineGlow 2s infinite;
}

@keyframes lineGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleX(0.8);
        filter: blur(3px);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1);
        filter: blur(1px);
    }
}

/* Decorative elements */
.title-decorator {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.title-decorator::before,
.title-decorator::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotateDecorator 20s linear infinite;
}

.title-decorator::before {
    top: -20px;
    left: 20%;
    animation-direction: normal;
}

.title-decorator::after {
    bottom: -20px;
    right: 20%;
    animation-direction: reverse;
}

@keyframes rotateDecorator {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Shine effect */
.forms-section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: titleShine 3s infinite;
}

@keyframes titleShine {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 0.8; }
    100% { left: 200%; opacity: 0; }
}

/* Background accent */
.title-background {
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        circle at center,
        rgba(239, 77, 152, 0.1) 0%,
        transparent 70%
    );
    filter: blur(20px);
    z-index: 1;
    animation: bgPulse 4s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .forms-section-title {
        font-size: 2.5rem;
    }

    .title-decorator::before,
    .title-decorator::after {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 480px) {
    .forms-section-title {
        font-size: 2rem;
    }
}



/* Rescue Organizations Section */
.muttstock-rescues-section {
    background: rgba(114, 80, 168, 0.05);
    border-radius: 20px;
    padding: 2rem;
}

.muttstock-rescues-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.muttstock-rescues-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.muttstock-rescue-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.muttstock-rescue-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rescue-logo {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rescue-info {
    flex: 1;
}

.rescue-info h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.rescue-info p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.rescue-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.rescue-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.rescue-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* CTA Section */
.muttstock-places-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.muttstock-places-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.muttstock-places-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.muttstock-places-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.muttstock-suggest-btn {
    padding: 1rem 2rem;
    background: var(--accent);
    border: none;
    border-radius: 30px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.muttstock-suggest-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(239, 77, 152, 0.3);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .muttstock-places-map-column {
        display: none;
    }
    .muttstock-places-content {
        justify-content: center;
    }
    .muttstock-places-list {
        padding: 0;
    }
    .muttstock-rescue-card {
        flex-direction: column;
        text-align: center;
    }
    .rescue-contact {
        justify-content: center;
    }
}



.footer-newsletter {
    
}