.contact-section .action-button,
.action-button {
    color: rgba(59, 224, 90, 0.8);
    text-align: center;
    font-family: Bahnschrift, sans-serif;
    font-size: 24px;
    font-weight: 600;
    height: 64px;
    padding: 12px 24px;
    border-radius: 81px;
    background-color: rgba(200, 247, 209, 0.02);
    box-shadow: 0px -2px 6px 0px rgba(59, 224, 90, 0.8) inset;
    border: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

/* Get Started Button Styling - Hero Section */
.hero .get-started-btn {
    color: #000;
    font-family: Bahnschrift;
    font-style: normal;
    font-weight: 600;
    background: var(--gradient, linear-gradient(90deg, #06F562 0%, #03FE94 100%));
    border: none;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero .get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(3, 254, 148, 0.3);
}

.hero .get-started-btn:active {
    transform: translateY(1px);
}

/* Get Started Button - Navbar */
.navbar .get-started-btn {
    background: rgba(200, 247, 209, 0.02);
    box-shadow: 0px -2px 6px 0px rgba(59, 224, 90, 0.80) inset;
    color: rgba(59, 224, 90, 0.80);
    font-family: Bahnschrift;
    font-style: normal;
    font-weight: 600;
    border: none;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 81px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar .get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px -3px 8px 0px rgba(59, 224, 90, 0.9) inset;
}

.navbar .get-started-btn:active {
    transform: translateY(1px);
    box-shadow: 0px -1px 4px 0px rgba(59, 224, 90, 0.7) inset;
}

/* Click Me Button Styling */
.click-me-btn {
    border-radius: 81px;
    background: rgba(200, 247, 209, 0.02);
    box-shadow: 0px -2px 6px 0px rgba(59, 224, 90, 0.80) inset;
    color: rgba(59, 224, 90, 0.80);
    font-family: Bahnschrift;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    cursor: pointer;
    padding: 12px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.click-me-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px -3px 8px 0px rgba(59, 224, 90, 0.9) inset;
}

.click-me-btn:active {
    transform: translateY(1px);
    box-shadow: 0px -1px 4px 0px rgba(59, 224, 90, 0.7) inset;
}

.contact-section .action-button:hover,
.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px -3px 8px 0px rgba(59, 224, 90, 0.9) inset;
}

.contact-section .action-button:focus,
.action-button:focus {
    outline: 2px solid rgba(59, 224, 90, 0.8);
    outline-offset: 2px;
}

.contact-section .action-button:active,
.action-button:active {
    transform: translateY(1px);
    box-shadow: 0px -1px 4px 0px rgba(59, 224, 90, 0.7) inset;
}

.contact-section .action-button i,
.action-button i {
    font-size: 1.2em;
}

@media (max-width: 640px) {

    .contact-section .action-button,
    .action-button {
        width: 100%;
    }
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    color: #ffffff;
    background-color: #3BE05A;
    box-shadow: none;
    opacity: 1;
    transform: none;
    width: 50px;
    height: 50px;

    font-family: Bahnschrift, sans-serif;
    font-size: 1.2rem;
    padding: 20px 12px;
    border-radius: 81px;
    display: inline-flex;

    align-items: center;
    justify-content: center;
    gap: 1rem;

    /* REMOVED TRANSITION */
}

.social-link:hover {
    background-color: #ffffff;
    color: #3BE05A;
}



.social-link i {
    font-size: 1.4rem;
}

.social-link:hover {
    background-color: #2FB850;
}