/* Snaps and Matches Events - Modern Theme */

:root {
    --color-cream: #FFF9F9;
    --color-warm-white: #FFFBFB;
    --color-blush: #FFDDE2;
    --color-rose: #F8A5B6;
    --color-pink: #F85C7F;
    --color-pink-dark: #E84A6F;
    --color-coral: #FF6B8A;
    --color-deep: #2C2020;
    --color-soft-black: #1A1416;
    --color-gold: #F8A5B6;
    --color-gold-light: #FFDDE2;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;

    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--color-cream);
    color: var(--color-deep);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Selection */
::selection {
    background: var(--color-gold-light);
    color: var(--color-deep);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--color-pink);
    border-radius: 4px;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(255, 249, 249, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 3rem;
    box-shadow: 0 2px 40px rgba(0,0,0,0.05);
}

.nav.scrolled .nav-logo img {
    height: 50px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 65px;
    width: auto;
    transition: height 0.4s var(--ease-smooth);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-deep);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-pink);
    transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1rem;
}

.nav-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-deep);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
}

.nav-social a:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-deep);
    transition: all 0.3s var(--ease-smooth);
}

/* Mobile Menu - Hidden by default */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-cream);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-logo {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-deep);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--color-pink);
}

.mobile-menu-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-menu-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 50%, var(--color-rose) 100%);
    opacity: 0.5;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F85C7F' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(248, 92, 127, 0.3));
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.hero-services {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.6s both;
}

.hero-services span {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--color-deep);
    white-space: nowrap;
}

.hero-services span:not(:last-child)::after {
    content: ' •';
    color: var(--color-pink);
    margin-left: 0.5rem;
}

.hero-location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.8s both;
}

.hero-location i {
    color: var(--color-pink);
    margin-right: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s var(--ease-smooth) 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-deep);
    color: white;
}

.btn-primary:hover {
    background: var(--color-pink);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(248, 92, 127, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-deep);
    border: 1px solid var(--color-deep);
}

.btn-secondary:hover {
    background: var(--color-deep);
    color: white;
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 8rem 8%;
    background: var(--color-warm-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #888;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-rose), var(--color-pink));
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-cream), var(--color-blush));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-pink);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== GALLERY SECTION ========== */
.gallery {
    padding: 8rem 8%;
    background: var(--color-deep);
    color: white;
}

.gallery .section-label {
    color: var(--color-rose);
}

.gallery .section-title {
    color: white;
}

.gallery .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.gallery-preview {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    z-index: 1;
}

.gallery-item::after {
    content: '\f065';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    transition: transform 0.4s var(--ease-bounce);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

.gallery-cta .btn-secondary {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.gallery-cta .btn-secondary:hover {
    background: white;
    color: var(--color-deep);
    border-color: white;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 8rem 8%;
    background: var(--color-warm-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--color-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pink);
}

.contact-item span {
    font-size: 0.9rem;
    color: #666;
}

.contact-form {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-deep);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-blush);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    background: var(--color-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    background: white;
    box-shadow: 0 0 0 4px rgba(184, 122, 94, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-soft-black);
    color: rgba(255,255,255,0.7);
    padding: 4rem 8% 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

.footer-social a:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-bottom span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom i {
    color: var(--color-pink);
}

/* ========== FLOATING CHAT BUTTON ========== */
.chat-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.chat-fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-pink), var(--color-coral));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 40px rgba(248, 92, 127, 0.4);
    transition: all 0.3s var(--ease-smooth);
}

.chat-fab-btn:hover {
    transform: scale(1.1);
}

.chat-fab-btn.active {
    transform: rotate(45deg);
}

.chat-fab-btn.active i::before {
    content: '\f00d';
}

.chat-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-smooth);
}

.chat-fab.open .chat-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-deep);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s var(--ease-smooth);
    transform: translateX(20px);
    opacity: 0;
}

.chat-fab.open .chat-option {
    transform: translateX(0);
    opacity: 1;
}

.chat-fab.open .chat-option:nth-child(1) { transition-delay: 0.05s; }
.chat-fab.open .chat-option:nth-child(2) { transition-delay: 0.1s; }
.chat-fab.open .chat-option:nth-child(3) { transition-delay: 0.15s; }
.chat-fab.open .chat-option:nth-child(4) { transition-delay: 0.2s; }

.chat-option:hover {
    background: var(--color-deep);
    color: white;
    transform: translateX(-5px);
}

.chat-option i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.chat-option.messenger i { background: #0084FF; color: white; }
.chat-option.instagram i { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.chat-option.tiktok i { background: #000; color: white; }
.chat-option.form i { background: var(--color-pink); color: white; }

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.lightbox-close:hover {
    background: white;
    color: var(--color-deep);
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-smooth);
}

.lightbox.active img {
    transform: scale(1);
}

/* ========== GALLERY MODAL ========== */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    padding: 2rem;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-content {
    background: var(--color-cream);
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-smooth);
}

.gallery-modal.active .gallery-modal-content {
    transform: scale(1);
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-blush);
}

.gallery-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-deep);
}

.gallery-modal-close {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--color-blush);
    background: transparent;
    color: var(--color-deep);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.gallery-modal-close:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: white;
}

.gallery-modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-modal-grid .gallery-item {
    aspect-ratio: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .nav-links,
    .nav-social {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .gallery-modal {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 6rem 1rem 3rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-services {
        flex-wrap: wrap;
        gap: 0.25rem 0.5rem;
    }

    .hero-services span {
        font-size: 1rem;
    }

    .services,
    .gallery,
    .contact {
        padding: 4rem 5%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-cta {
        flex-direction: column;
        align-items: center;
    }

    .gallery-modal-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 220px;
    }

    .hero-services {
        flex-direction: column;
        gap: 0.3rem;
    }

    .hero-services span {
        font-size: 0.95rem;
    }

    .hero-services span:not(:last-child)::after {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .chat-fab {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .chat-fab-btn {
        width: 55px;
        height: 55px;
    }
}
