/* Buttons & Links Styling */

/* Action Section */
.action-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 50px auto;
    max-width: 600px;
    flex-wrap: wrap;
}

/* Action Button Base */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.05);
    min-width: 200px;
    z-index: 1;
}

/* Button Icon */
.btn-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

/* Button Text */
.btn-text {
    position: relative;
    z-index: 2;
}

/* Button Pulse Effect */
.btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: inherit;
    filter: blur(15px);
    opacity: 0.7;
    z-index: -1;
    animation: pulseEffect 2s ease-in-out infinite;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.95) 0%,
        rgba(37, 211, 102, 0.85) 100%);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 1) 0%,
        rgba(37, 211, 102, 0.9) 100%);
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(37, 211, 102, 0.6);
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.95) 0%,
        rgba(157, 80, 187, 0.85) 100%);
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 1) 0%,
        rgba(157, 80, 187, 0.9) 100%);
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(255, 0, 128, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 0, 128, 0.6);
}

/* Button Hover Effects */
.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
    background: rgba(255, 255, 255, 0.25);
}

/* Links Section */
.links-section {
    max-width: 900px;
    margin: 70px auto 50px;
    padding: 0 20px;
}

.links-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FF0080 20%, 
        #00D2FF 50%, 
        #9D50BB 80%, 
        transparent 100%);
    border-radius: 2px;
}

.title-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #FF0080, #00D2FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
    padding: 0 20px;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Link Card Base */
.link-card {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.1) 0%,
        rgba(0, 210, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Link Badge */
.link-badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-right: 25px;
    font-size: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

/* Link Content */
.link-content {
    flex: 1;
}

.link-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.link-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Link Arrow */
.link-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.8);
}

/* Demo Link */
.demo-link .link-badge {
    color: #00D2FF;
    background: linear-gradient(135deg, 
        rgba(0, 210, 255, 0.2) 0%,
        rgba(0, 210, 255, 0.1) 100%);
}

.demo-link:hover {
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 210, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.demo-link:hover .link-badge {
    background: linear-gradient(135deg, 
        rgba(0, 210, 255, 0.3) 0%,
        rgba(0, 210, 255, 0.2) 100%);
    transform: scale(1.1) rotate(10deg);
}

/* Website Link */
.website-link .link-badge {
    color: #FF0080;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.2) 0%,
        rgba(255, 0, 128, 0.1) 100%);
}

.website-link:hover {
    border-color: rgba(255, 0, 128, 0.3);
    box-shadow: 
        0 25px 50px rgba(255, 0, 128, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.website-link:hover .link-badge {
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.3) 0%,
        rgba(255, 0, 128, 0.2) 100%);
    transform: scale(1.1) rotate(-10deg);
}

/* Hosting Link */
.hosting-link .link-badge {
    color: #9D50BB;
    background: linear-gradient(135deg, 
        rgba(157, 80, 187, 0.2) 0%,
        rgba(157, 80, 187, 0.1) 100%);
}

.hosting-link:hover {
    border-color: rgba(157, 80, 187, 0.3);
    box-shadow: 
        0 25px 50px rgba(157, 80, 187, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hosting-link:hover .link-badge {
    background: linear-gradient(135deg, 
        rgba(157, 80, 187, 0.3) 0%,
        rgba(157, 80, 187, 0.2) 100%);
    transform: scale(1.1) rotate(15deg);
}

/* Hover Effects */
.link-card:hover {
    transform: translateY(-8px);
}

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

.link-card:hover .link-arrow {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    color: white;
}

/* Active States */
.action-btn:active,
.link-card:active {
    transform: scale(0.98) translateY(0);
    transition: transform 0.1s ease;
}

/* Keyframe Animations */
@keyframes pulseEffect {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Glitter Effect for Links */
.link-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    opacity: 0;
}

.link-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(20%, 20%);
}