/* 
====================================
  ALL IT - Custom Stylesheet
  Boutique Tech Agency Redesign
====================================
*/

:root {
    /* Color Palette */
    --bg-dark: #070B14;
    --bg-darker: #04060A;
    --bg-surface: rgba(15, 23, 42, 0.6);
    --bg-card: #0F172A;

    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;

    /* Global Gradients */
    --gradient-primary: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
    --gradient-text: linear-gradient(135deg, #FFFFFF 0%, #A5B4FC 100%);

    /* Accents */
    --accent-blue: #0072FF;
    --accent-cyan: #00C6FF;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Structural */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-pill: 50px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* ================= Reset & Base ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
}

/* ================= Utilities ================= */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Bento Grid Redesign */
.bento-grid {
    perspective: 1000px;
}

.bento-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent);
    z-index: 0;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.tech-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.smaller-text {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Branded Glowing Shadows on Hover */
.tech-card-react:hover {
    box-shadow: 0 15px 35px -5px rgba(97, 218, 251, 0.2);
}

.tech-card-laravel:hover {
    box-shadow: 0 15px 35px -5px rgba(255, 45, 32, 0.2);
}

.tech-card-js:hover {
    box-shadow: 0 15px 35px -5px rgba(247, 223, 30, 0.2);
}

.tech-card-vue:hover {
    box-shadow: 0 15px 35px -5px rgba(79, 192, 141, 0.2);
}

.tech-card-php:hover {
    box-shadow: 0 15px 35px -5px rgba(119, 123, 180, 0.2);
}

.tech-card-html:hover {
    box-shadow: 0 15px 35px -5px rgba(227, 79, 38, 0.2);
}

.tech-card-bootstrap:hover {
    box-shadow: 0 15px 35px -5px rgba(121, 82, 179, 0.2);
}

.bento-card img {
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.bento-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 991px) {
    .bento-card {
        border-radius: 20px;
        min-height: 180px;
    }
}

.glass-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.border-dark-subtle {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* ================= Buttons ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-base);
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-outline:hover,
.btn-outline:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* ================= Header Navbar ================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-base);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    padding: 1rem 0;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo .text-gradient {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-base);
}

/* ================= Modern Badge ================= */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 198, 255, 0.08);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: var(--border-radius-pill);
    color: var(--accent-cyan);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 198, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 198, 255, 0);
    }
}

/* ================= Tech Grid ================= */
.tech-grid {
    width: 100%;
    padding: 2rem 0;
}

/* ================= Hero Section ================= */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-gradient {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.25) 0%, rgba(0, 114, 255, 0.1) 40%, rgba(0, 0, 0, 0) 80%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.hero-bg-gradient-secondary {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(0, 198, 255, 0.2));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    max-width: 650px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-illustration {
    position: relative;
    z-index: 2;
    animation: floating 6s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(0, 198, 255, 0.3));
    max-width: 480px;
    margin: 0 auto;
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-image-frame {
    transition: var(--transition-base);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: rgba(0, 198, 255, 0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }

    .hero-section {
        padding-top: 6rem;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .badge-modern {
        margin: 0 auto;
    }
}

/* ================= Services Section ================= */
.service-card {
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.active-glow {
    border-color: rgba(0, 114, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 114, 255, 0.1) inset;
}

.text-accent-cyan {
    color: var(--accent-cyan);
}

.text-accent-blue {
    color: var(--accent-blue);
}

.service-icon {
    display: inline-flex;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.8);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ================= Value Section ================= */
.bg-gradient-border {
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.5) 0%, rgba(0, 114, 255, 0.5) 100%);
}

.filter-blur {
    filter: blur(80px);
}

/* ================= FAQ & Contact ================= */
.faq-item {
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-trigger {
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active {
    border-color: rgba(0, 198, 255, 0.3);
    background: rgba(15, 23, 42, 0.6);
}

/* Value Section Spacing */
.value-section .text-secondary {
    line-height: 1.8;
}

.value-section h4 {
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.value-section .fs-5 {
    line-height: 1.7;
}

/* Form Styling */
.form-floating-custom {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.35rem;
    position: relative;
}

.form-floating-custom .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    padding-left: 0.2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.form-floating-custom .form-control:focus~.form-label,
.form-floating-custom .form-select:focus~.form-label,
.form-floating-custom .form-control:not(:placeholder-shown)~.form-label {
    color: var(--accent-cyan) !important;
}

/* Validation Feedback Styles */
.invalid-feedback {
    font-size: 0.7rem;
    color: #ff4d4d;
    margin-top: 0.25rem;
    padding-left: 0.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: none;
    animation: fadeInDown 0.3s ease-out;
}

.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-select:invalid~.invalid-feedback {
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control,
.form-select {
    background-color: rgba(4, 6, 10, 0.5);
    /* Darker input background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-radius: var(--border-radius-md);
    /* Softer corners */
    padding: 0.85rem 1.2rem;
    /* Wider padding for premium feel */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(15, 23, 42, 0.9);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.1);
    /* Subtle, larger glow */
    color: var(--text-primary);
    transform: translateY(-2px);
    /* Slight lift effect on focus */
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 75px;
    background-color: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float-tooltip {
        display: none;
    }
}

.form-control::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

/* Fix for Select Option Visibility in Dark Mode */
.form-select option {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

/* SweetAlert2 Enhancements - Neon Tech Edition */
.shadow-cyan-vibrant {
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.3) !important;
}

.shadow-red-glow {
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2) !important;
}

.neon-modal-border {
    border: 1px solid rgba(0, 243, 255, 0.4) !important;
}

.border-left-accent {
    border-left: 5px solid #00F3FF !important;
}

.border-left-red-neon {
    border-left: 5px solid #FF003C !important;
}

.neon-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    background: linear-gradient(90deg, #00F3FF, #0072FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem !important;
}

.neon-text {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9);
}

.neon-title-light {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    color: #1e293b !important;
    font-size: 1.6rem !important;
}

.neon-text-light {
    font-size: 1rem !important;
    color: #475569 !important;
}

.btn-neon-glow {
    background: linear-gradient(135deg, #00F3FF, #0072FF) !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 14px 35px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    color: white !important;
    border-radius: 12px !important;
}

.btn-neon-glow:hover {
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.7) !important;
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.1);
}

.btn-neon-red {
    background: linear-gradient(135deg, #FF003C, #8B0000) !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.3) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 14px 35px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    color: white !important;
    border-radius: 12px !important;
}

.btn-neon-red:hover {
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.6) !important;
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.1);
}

.btn-neon-purple {
    background: linear-gradient(135deg, #A855F7, #6366F1) !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 14px 35px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    color: white !important;
    border-radius: 12px !important;
}

.btn-neon-purple:hover {
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.6) !important;
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.2);
}

.btn-outline-neon {
    background: rgba(0, 243, 255, 0.05) !important;
    border: 1px solid rgba(0, 243, 255, 0.6) !important;
    color: #00F3FF !important;
    font-weight: 700 !important;
    padding: 14px 35px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border-radius: 12px !important;
    box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.05) !important;
}

.btn-outline-neon:hover {
    background: rgba(0, 243, 255, 0.15) !important;
    border-color: #00F3FF !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3), inset 0 0 15px rgba(0, 243, 255, 0.1) !important;
    transform: translateY(-2px);
}

/* Process Section Styles */
.process-steps-container {
    position: relative;
}

.process-step-card {
    position: relative;
    transition: var(--transition-base);
}

.step-number-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(0, 198, 255, 0.05);
    line-height: 1;
    z-index: 0;
    transition: var(--transition-base);
}

.step-icon-bg {
    width: 64px;
    height: 64px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step-card:hover .step-icon-bg {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}

.process-step-card:hover .step-number {
    color: rgba(0, 198, 255, 0.15);
    transform: translateY(-5px);
}

.process-step-card h3 {
    transition: color 0.3s ease;
}

.process-step-card:hover h3 {
    color: var(--accent-cyan) !important;
}

.process-step-card p {
    line-height: 1.6;
}

/* Footer Social Icons & Divider */
.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.2), transparent);
}

.social-icon-btn {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-icon-btn:hover {
    color: white;
    transform: translateY(-8px) scale(1.1);
}

.social-icon-btn:hover svg {
    transform: rotate(5deg);
}

.social-icon-btn.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    box-shadow: 0 0 30px rgba(0, 119, 181, 0.6);
}

.social-icon-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(228, 64, 95, 0.6);
}

.social-icon-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icon-btn:hover::after {
    opacity: 1;
}