/* Reset & Variables */
:root {
    --brand-dark: #263238;
    --brand-grey: #546E7A;
    --brand-green: #8CC63F;
    --brand-blue: #00AEEF;
    --bg-light: #F8F9FA;
    --text-white: #FFFFFF;

    --font-main: 'Plus Jakarta Sans', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--brand-dark);
    background-color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

.hidden {
    display: none !important;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--brand-dark);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 150px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--brand-green);
}

/* Special CTA Button with Gradient Border */
.btn-cta {
    position: relative;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    color: white !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-cta .btn-bg {
    position: absolute;
    inset: 0;
    background: var(--brand-green);
    z-index: 1;
    border-radius: 9999px;
    transition: margin 0.3s ease;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(to right, var(--brand-blue), var(--brand-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(140, 198, 63, 0.4);
}

.btn-cta:hover .btn-bg {
    margin: 2px;
    /* Reveals gradient behind */
}

.btn-cta:hover::before {
    opacity: 1;
    /* Not strictly needed with the margin trick, but adds vividness */
}

.btn-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--brand-green);
}

/* Mobile Menu */
#mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-dark);
}

#mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 1rem;
}

#mobile-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5rem;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span:first-child {
    display: block;
}

.typing-text {
    background: linear-gradient(to right, var(--brand-blue), var(--brand-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cursor {
    animation: blink 1s step-start infinite;
    color: var(--brand-green);
    font-weight: 400;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-desc {
    max-width: 700px;
    font-size: 1.25rem;
    color: var(--brand-grey);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    /* Similar style to .btn-cta but larger */
    position: relative;
    padding: 1rem 2rem;
    border-radius: 9999px;
    color: white !important;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-green);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 10px 25px rgba(140, 198, 63, 0.4);
}

/* Reusing internal structure logic for gradient border via JS or simple CSS hover change */
.btn-primary .btn-content {
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    background: white;
    border: 2px solid #E5E7EB;
    color: var(--brand-dark) !important;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue) !important;
    box-shadow: var(--shadow-md);
}

/* Blur Blobs */
.blur-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
}

.blob-top {
    top: 0;
    right: 0;
    background: var(--brand-blue);
    transform: translate(30%, -30%);
}

.blob-bottom {
    bottom: 0;
    left: 0;
    background: var(--brand-green);
    transform: translate(-30%, 30%);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
    color: #9CA3AF;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Sections General */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--brand-grey);
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.partner-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.partner-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
    mask-image: linear-gradient(to top, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 80%, transparent 100%);
}

.sharllenny-img {
    width: 240px;
    right: -20px;
    bottom: -100px !important;
    position: absolute;
}

.reryson-img {
    bottom: -60px !important;
    width: 230px;
}

.green-theme:hover {
    border-color: rgba(140, 198, 63, 0.3);
}

.blue-theme:hover {
    border-color: rgba(0, 174, 239, 0.3);
}

.card-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.05;
    padding: 2rem;
}

.card-bg-icon svg {
    width: 120px;
    height: 120px;
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.green-theme .icon-box {
    background: rgba(140, 198, 63, 0.1);
    color: var(--brand-green);
}

.blue-theme .icon-box {
    background: rgba(0, 174, 239, 0.1);
    color: var(--brand-blue);
}

.partner-card h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 2;
}

.partner-card .role {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.partner-card p {
    position: relative;
    z-index: 2;
}

.green-theme .role {
    color: var(--brand-green);
}

.blue-theme .role {
    color: var(--brand-blue);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.feature-list li svg {
    width: 18px;
    height: 18px;
}

.green-theme .feature-list svg {
    color: var(--brand-green);
}

.blue-theme .feature-list svg {
    color: var(--brand-blue);
}

/* Services */
.bg-light {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #F1F5F9;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-items {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.service-items li {
    font-size: 0.9rem;
    color: var(--brand-grey);
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.green-theme li::before {
    background: var(--brand-green);
}

.blue-theme li::before {
    background: var(--brand-blue);
}

/* Clients */
.clients-title {
    text-align: center;
    font-size: 1rem;
    color: #94A3B8;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    margin-bottom: 4rem;
}

.clients-list span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #CBD5E1;
    transition: var(--transition);
    cursor: default;
}

.clients-list span:hover {
    color: var(--brand-dark);
}

.stats-container {
    background: rgba(0, 174, 239, 0.05);
    border-radius: 1.5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    gap: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--brand-grey);
    font-weight: 500;
}

/* Testimonials */
.bg-gradient {
    background: linear-gradient(to bottom, #fff, #F8FAFC);
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--brand-green);
    margin: 1rem auto;
    border-radius: 2px;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    padding: 4rem 2rem;
    position: relative;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.quote-icon {
    position: absolute;
    top: -24px;
    left: 2rem;
    background: var(--brand-dark);
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
}

.slides-container {
    min-height: 250px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-areas: "stack";
}

.slide {
    grid-area: stack;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.slide-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--brand-grey);
    margin-bottom: 2rem;
    max-width: 80%;
}

.slide-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-dark);
}

.slide-role {
    font-size: 0.9rem;
    color: var(--brand-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-btn {
    background: white;
    border: 1px solid #E2E8F0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
}

.slider-btn:hover {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #E2E8F0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 24px;
    background: var(--brand-green);
    border-radius: 4px;
}

/* Contact */
.bg-dark {
    background-color: var(--brand-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.blob-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
}

.blob-accent.top-right {
    top: 0;
    right: 0;
    background: var(--brand-green);
}

.blob-accent.bottom-left {
    bottom: 0;
    left: 0;
    background: var(--brand-blue);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #94A3B8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method small {
    display: block;
    color: #94A3B8;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hover-green:hover .method-icon {
    background: var(--brand-green);
}

.hover-blue:hover .method-icon {
    background: var(--brand-blue);
}

.method a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.method span {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.hover-green a:hover {
    color: var(--brand-green);
}

.hover-blue a:hover {
    color: var(--brand-blue);
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.socials .hover-green {
    background: var(--brand-green);
}

.socials .hover-blue {
    background: var(--brand-blue);
}

.socials .hover-green:hover {
    background: #7cb332;
}

.socials .hover-blue:hover {
    background: #009bd6;
}

.contact-form-wrapper {
    background: white;
    color: var(--brand-dark);
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
}

#contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748B;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 1px solid #E2E8F0;
    border-radius: 0.5rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, var(--brand-dark), #374151);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--brand-blue), var(--brand-green));
    transform: translateY(-2px);
}

/* Success Message */
#success-message {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 1.5rem;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #DCFCE7;
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

#reset-form {
    background: #F1F5F9;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #64748B;
    transition: var(--transition);
}

#reset-form:hover {
    background: #E2E8F0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Footer */
footer {
    background: #111827;
    color: #9CA3AF;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 1rem;
}

.footer-logo .logo-img {
    height: 70px;
    filter: brightness(0) invert(1);
}

.footer-logo small {
    color: #6B7280;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 769px) {
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }

    #mobile-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }



    /* Fix Header Overlap */
    nav {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 48px;
        max-width: 120px;
    }

    .hero {
        padding-top: 8rem;
        /* Ensure content clears the fixed header */
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Fix Partner Card Overlap on Mobile */
    .partner-card {
        padding-bottom: 12rem;
        /* Give more space for the image */
    }

    .partner-img {
        width: 180px;
    }

    .sharllenny-img {
        bottom: -80px !important;
        /* Move image down */
        right: -10px;
    }

    .reryson-img {
        bottom: -50px !important;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Badge */
.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F3F4F6;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid #E5E7EB;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4B5563;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(140, 198, 63, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(140, 198, 63, 0);
    }
}

/* Floating WhatsApp Button */
.whatsapp-link {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.5s ease 1s backwards, pulse-green 2s infinite;
}

.whatsapp-link svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.whatsapp-link:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-link:hover::before {
    opacity: 1;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .whatsapp-link {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }

    .whatsapp-link svg {
        width: 30px;
        height: 30px;
    }
}