/* ===========================
   Variables & Colors
   =========================== */
:root {
    --primary-color: #e8559a;
    --secondary-color: #e4b85a;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --white: #ffffff;
}

/* ===========================
   General Styles
   =========================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

html {
    scroll-behavior: smooth;
}

/* ===========================
   Cookie Banner
   =========================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(223, 32, 128, 0.98) 0%, rgba(196, 26, 109, 0.98) 100%);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    animation: slideUpBanner 0.6s ease-out;
}

.cookie-banner.hidden {
    display: none !important;
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 300;
}

.cookie-banner a {
    color: #f4d03f;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner a:hover {
    color: #ffffff;
    text-decoration: none;
}

.cookie-banner .btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner .btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.cookie-banner .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: white;
    font-weight: 600;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--dark-color) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    /* Ottimizzazioni per mobile */
    -webkit-transform: translate(-50%, -50%);

    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--dark-color);
    padding: 2rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--dark-color);
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 85, 154, 0.3);
    color: white;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: #d63384;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 85, 154, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 85, 154, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.btn-outline-light:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 85, 154, 0.4);
}

/* ===========================
   Cards & Hover Effects
   =========================== */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.card {
    border-radius: 15px;
    overflow: hidden;
}

.service-icon i {
    color: var(--secondary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: #1a1a1a;
}

.footer a:hover {
    color: var(--secondary-color) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.fw-bold {
    font-weight: 500 !important;
}

.lead {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.7;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    position: relative;
    color: white;
    padding: 200px 0 80px;
    margin-bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(228, 184, 90, 0.85);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-weight: 300;
}

/* ===========================
   About Page Styles
   =========================== */
.about-image-wrapper {
    position: relative;
    background: var(--secondary-color);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(228, 184, 90, 0.3);
}

.about-image-bg {
    background-image: url('media/centro2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-image-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(228, 184, 90, 0.05);
    border-radius: 20px;
}

.about-badge {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.badge-number {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
}

.value-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Anna Photo Styles */
.anna-photo-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.anna-photo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.anna-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.anna-photo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(228, 184, 90, 0.1);
    z-index: 1;
    border-radius: 20px;
}

/* Welcome Section Card Background */
.welcome-card {
    background-image: url('media/centro.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.welcome-card .card-body {
    position: relative;
    z-index: 1;
}

/* ===========================
   Treatments Page Styles
   =========================== */
.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.treatment-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.treatment-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.treatment-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* ===========================
   Certifications Page Styles
   =========================== */
.certification-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    height: 100%;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.certification-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.cert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certification-card:hover .cert-img {
    transform: scale(1.05);
}

.certification-image:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Modal per certificati */
.cert-modal .modal-dialog {
    max-width: 90%;
    max-height: 90vh;
}

.cert-modal .modal-content {
    background: transparent;
    border: none;
}

.cert-modal .modal-body {
    padding: 0;
    text-align: center;
}

.cert-modal img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cert-modal .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 1051;
}

.certification-content h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.excellence-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Attestati Image Styles */
.attestati-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.attestati-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.attestati-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.attestati-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(228, 184, 90, 0.1);
    z-index: 1;
    border-radius: 15px;
}

.stat-box {
    padding: 2rem;
}

.stat-box h2 {
    color: var(--secondary-color);
}

/* ===========================
   Contact Page Styles
   =========================== */
.contact-info-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.contact-details a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #d63384;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(228, 184, 90, 0.15);
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.social-links .social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: #d63384;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(228, 184, 90, 0.4);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ===========================
   Reviews Section Styles
   =========================== */
.reviews-section {
    position: relative;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 320px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
}

.review-card h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.review-text {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

.google-review-cta {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.google-review-cta i.bi-google {
    color: #4285f4;
}

.carousel-inner{
    padding: 30px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(200, 200, 200, 0.3);
    border-radius: 50%;
    padding: 20px;
    width: 40px;
    height: 40px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #d63384;
}

/* ===========================
   Gallery Section Styles
   =========================== */
.gallery-section {
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 450px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(228, 184, 90, 0.1);
    z-index: 1;
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 0.3;
}

/* ===========================
   Text Colors
   =========================== */
.text-primary {
    color: var(--primary-color) !important;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }

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

    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .page-header {
        padding: 150px 0 60px;
    }

    .about-image-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }

    .badge-number {
        font-size: 4rem;
    }

    .certification-card {
        flex-direction: column;
        text-align: center;
    }

    .certification-image {
        align-self: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 772px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-video {
        /* Ottimizzazioni per video su schermi più piccoli */
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-video {
        /* Ottimizzazioni per video su mobile */
        -webkit-transform: translate(-50%, -50%) scale(1.2);
        transform: translate(-50%, -50%) scale(1.2);
    }

    .hero-content {
        padding: 2rem 1rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .cookie-banner .row {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner .col-md-2 {
        margin-top: 1rem;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }

    .cert-modal .modal-dialog {
        max-width: 95%;
        margin: 10px;
    }

    .cert-modal img {
        max-height: 70vh;
    }

    /* Allineamento centrato per mobile */
    .welcome-section .col-lg-6:first-child,
    .about-section .col-lg-6:first-child {
        text-align: center;
    }

    .welcome-section h2,
    .about-section h2 {
        text-align: center;
    }

    .welcome-section p,
    .about-section p {
        text-align: center;
    }

    .welcome-section .btn,
    .about-section .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }

    /* Cookie banner mobile */
    .cookie-banner {
        padding: 1rem 0;
    }

    .cookie-banner p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .cookie-banner .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    .cookie-banner .col-md-2 {
        text-align: center !important;
        margin-top: 1rem;
    }

    /* Reviews carousel on mobile */
    .reviews-section .col-md-4 {
        margin-bottom: 1rem;
    }

    #reviewsCarousel .carousel-item .col-md-4:nth-child(n+2) {
        display: none;
    }

    .review-card {
        padding: 1.5rem;
    }

    .google-review-cta {
        padding: 2rem 1.5rem;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

/* ===========================
   Animations
   =========================== */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

