/* CSS Variables & Reset */
:root {
    --bg-color: #0a0a0a;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #00f2ea;
    --accent-flow: #ff0055;
    --font-main: 'Outfit', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;

    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Cinematic Vignette Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9990; /* Keep underneath custom cursor */
    background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.7) 130%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    transition: width 0.3s, height 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.1s, width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-active .cursor {
    width: 0;
    height: 0;
}

.cursor-active .cursor-follower {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, var(--accent-color), var(--accent-flow));
    color: #000;
    border: none;
    padding: 0.8rem 1.8rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 242, 234, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.highlight {
    color: var(--accent-color);
    background: linear-gradient(90deg, var(--accent-color), var(--accent-flow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
}

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

.nav-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-button {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.nav-button:hover {
    background: var(--text-primary);
    color: #000;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    color: #ffffff;
    font-weight: 700;
}

.hero-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-top: 1rem;
}

.hero-description {
    color: #b0b0b0;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.hero-details {
    color: #888888;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.shape-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    animation: float 20s infinite alternate;
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-flow);
    animation: float 15s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

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

.section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-header .subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1.5;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    position: relative;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 242, 234, 0.1) 0%, transparent 70%);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Skills Section */
.skills-section {
    background: var(--bg-secondary);
}

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

.skill-category {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.skill-category:hover {
    border-color: rgba(0, 242, 234, 0.3);
    transform: translateY(-5px);
}

.skill-category h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skill-category h3 i {
    color: var(--accent-color);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.skill-category:hover .skill-tag {
    background: rgba(0, 242, 234, 0.1);
    color: var(--accent-color);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--accent-color);
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(0, 242, 234, 0.05);
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Floating Micro-Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 70%;
        height: calc(100vh - var(--header-height));
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hero-cta {
        flex-direction: column;
        max-width: 300px;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: space-around;
        text-align: center;
    }
}

/* Projects Section Styles */
.projects-section {
    position: relative;
    z-index: 10;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* 3D tilt prep */
    will-change: transform;
    transform-style: preserve-3d;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(0, 242, 234, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 234, 0.05);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.project-img-placeholder span {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
}

.project-card:hover .project-img-placeholder {
    transform: scale(1.05);
}

.project-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    font-size: 0.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-tags span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.btn-link:hover {
    color: var(--accent-color);
}

/* Services Section Styles */
.service-category {
    margin-bottom: 5rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-heading {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
    display: inline-block;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    /* 3D tilt prep */
    will-change: transform;
    transform-style: preserve-3d;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 242, 234, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 242, 234, 0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.service-icon i {
    animation: float 4s ease-in-out infinite;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    color: #000;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* AI Chatbot Widget Styles */
.ai-chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Outfit', sans-serif;
}

.chatbot-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366; /* Match WhatsApp green */
    color: #000; /* Black icon for contrast as requested by user image */
    border: none;
    box-shadow: 
        0 4px 0 #1da851, 
        0 10px 20px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 9995; /* Sit above vignette overlay */
    position: relative; /* Ensure z-index works */
}

.chatbot-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #1da851, 
        0 15px 25px rgba(37, 211, 102, 0.4);
    background: #2ced71;
}

.chatbot-toggle-btn:active {
    transform: translateY(4px);
    box-shadow: 
        0 0 0 #1da851, 
        0 5px 10px rgba(37, 211, 102, 0.3);
}

.chatbot-toggle-btn i {
    width: 24px;
    height: 24px;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--bg-color, #ffffff);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    transform-origin: bottom right;
    border: 1px solid var(--border-color, #e5e7eb);
}

.chatbot-container.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    pointer-events: none;
}

.chatbot-header {
    background: var(--primary-color, #2563eb);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chatbot-close-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chatbot-close-btn:hover {
    opacity: 1;
}

.chatbot-close-btn i {
    width: 18px;
    height: 18px;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--bg-alt-color, #f8fafc);
}

.message {
    max-width: 85%;
    display: flex;
}

.message-content {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.message.ai-message {
    align-self: flex-start;
}

.message.ai-message .message-content {
    background: var(--bg-color, #ffffff);
    color: var(--text-color, #1e293b);
    border: 1px solid var(--border-color, #e5e7eb);
    border-bottom-left-radius: 4px;
}

.message.user-message {
    align-self: flex-end;
}

.message.user-message .message-content {
    background: var(--primary-color, #2563eb);
    color: white;
    border-bottom-right-radius: 4px;
}

.chatbot-input-area {
    padding: 15px;
    background: var(--bg-color, #ffffff);
    border-top: 1px solid var(--border-color, #e5e7eb);
    display: flex;
    gap: 10px;
}

.chatbot-input-area input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    background: var(--bg-alt-color, #f8fafc);
    color: var(--text-color, #1e293b);
    transition: border-color 0.2s;
}

.chatbot-input-area input:focus {
    border-color: var(--primary-color, #2563eb);
}

.chatbot-send-btn {
    background: var(--primary-color, #2563eb);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.chatbot-send-btn:hover {
    background: var(--secondary-color, #1d4ed8);
}

.chatbot-send-btn i {
    width: 18px;
    height: 18px;
}

/* Ensure responsiveness */
@media screen and (max-width: 480px) {
    .chatbot-container {
        width: calc(100vw - 40px);
        right: -10px;
        bottom: 70px;
    }
}

/* AI Chatbot Widget Dark Mode Overrides */
.chatbot-container {
    background: #111827;
    border-color: #374151;
}

.chatbot-messages {
    background: #1f2937;
}

.message.ai-message .message-content {
    background: #374151;
    color: #f9fafb;
    border-color: #4b5563;
}

.chatbot-input-area {
    background: #111827;
    border-top-color: #374151;
}

.chatbot-input-area input {
    background: #1f2937;
    color: #f9fafb;
    border-color: #4b5563;
}

.chatbot-input-area input:focus {
    border-color: var(--primary-color, #2563eb);
}

/* Chat Widget Styles */
.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9995; /* Sit above vignette overlay */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 0 #1da851, 
        0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #1da851, 
        0 15px 25px rgba(37, 211, 102, 0.4);
    background: #2ced71;
    color: white;
}

.floating-chat-btn:active {
    transform: translateY(4px);
    box-shadow: 
        0 0 0 #1da851, 
        0 5px 10px rgba(37, 211, 102, 0.3);
}