﻿:root {
    --bg-color: #ffffff;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --primary-blue: #0066cc;
    --accent-gold: #f59e0b;
    --hero-overlay: rgba(0, 0, 0, 0.6);
    --font-main: 'Satoshi', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Header */
header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nav-contact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

/* Optimized Button Styles */
.btn-optimized {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 102, 204, 0.2);
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-optimized:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 102, 204, 0.3);
}

.btn-optimized i {
    font-size: 1.1em;
}

/* Header Variant */
.btn-optimized-header {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
}

.phone_number {
    white-space: nowrap;
}

/* Hero Variant */
.btn-optimized-large {
    font-size: 1.8rem;
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    margin-bottom: 0.5rem;
    display: inline-flex;
}

.btn-optimized-large:hover {
    background: #d97706;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    color: #ffffff;
}

.hero-content {
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Call to Action Box */
.cta-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.cta-label {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-sub {
    display: block;
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-top: 1rem;
}

/* Features Strip */
.features-strip {
    background: #f8fafc;
    padding: 4rem 5%;
    border-bottom: 1px solid #e2e8f0;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-item {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #1e293b;
    padding: 4rem 5% 2rem;
    text-align: center;
    color: #cbd5e1;
    padding-bottom: 5rem;
    /* Space for sticky bar */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: #ffffff;
    width: 90%;
    max-width: 800px;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.popup-overlay.active .popup-card {
    transform: scale(1) translateY(0);
}

.close-popup-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #64748b;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.close-popup-btn:hover {
    background: #f1f5f9;
    color: #ef4444;
    transform: rotate(90deg);
}

/* Left Visual Side */
.popup-header-visual {
    width: 40%;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.plane-animation {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: flyPlane 3s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://raw.githubusercontent.com/lipis/flag-icons/main/flags/4x3/un.svg');
    opacity: 0.1;
    background-size: cover;
}

/* Right Content Side */
.popup-body {
    width: 60%;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.deal-badge {
    display: inline-block;
    background: #fee2e2;
    color: #ef4444;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    align-self: flex-start;
    letter-spacing: 1px;
}

.popup-body h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.highlight-percent {
    color: #0066cc;
    background: linear-gradient(120deg, #0066cc 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deal-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.offer-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 2rem;
    background: #fffbeb;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    align-self: flex-start;
    border: 1px solid #fcd34d;
}

/* Premium Button */
.btn-popup-premium {
    display: flex;
    align-items: center;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

.btn-popup-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.4);
    background: #1e293b;
}

.btn-icon {
    background: #2563eb;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-content {
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
}

.btn-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1px;
    font-weight: 700;
}

.btn-content .phone_number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.no-wait-text {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    animation: pulse-dot 2s infinite;
}

@keyframes flyPlane {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Airlines Serviced Section */
.airlines-section {
    padding: 4rem 5%;
    background: #ffffff;
    text-align: center;
}

.airlines-header {
    margin-bottom: 3rem;
}

.airlines-header h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.airlines-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.airline-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.airline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.airline-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.airline-name {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
}

.airlines-more {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Reservations Desk Section */
.reservations-section {
    background: linear-gradient(rgba(76, 29, 149, 0.9), rgba(76, 29, 149, 0.8)), url('https://images.unsplash.com/photo-1556388169-db19adc96088?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 5rem 5%;
    text-align: center;
    color: #ffffff;
}

.reservations-content {
    max-width: 800px;
    margin: 0 auto;
}

.reservations-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reservations-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e9d5ff;
    margin-bottom: 0;
}

/* Info Cards Section */
.info-cards-section {
    padding: 4rem 5%;
    background: #f8fafc;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-left: 5px solid;
}

.info-card.support {
    border-left-color: #7c3aed;
    /* Purple */
}

.info-card.compare {
    border-left-color: #0d9488;
    /* Teal */
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card.support h3 {
    color: #7c3aed;
}

.info-card.compare h3 {
    color: #0d9488;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-text {
    color: #ef4444;
    font-weight: 700;
}

/* Sticky Bottom Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ec4899;
    /* Pink */
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    z-index: 1500;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.sticky-bar-text {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.sticky-bar-phone {
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .btn-optimized {
        padding: 0.75rem 1.25rem;
    }

    .btn-optimized-large {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        width: auto;
        max-width: 100%;
    }

    .popup-content .btn-optimized {
        width: 100%;
        font-size: 1.2rem;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 5%;
        gap: 0.5rem;
    }

    .nav-contact {
        align-items: flex-end;
    }

    .nav-contact-label {
        display: none;
    }

    .logo-img {
        width: 110px;
        height: auto;
    }

    .btn-optimized-header {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .btn-optimized-header .phone_number {
        font-size: 0.85rem;
    }

    .sticky-bar {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.8rem;
    }

    .sticky-bar-text {
        font-size: 0.9rem;
    }

    .sticky-bar-phone {
        font-size: 1.2rem;
    }

    .reservations-content h2 {
        font-size: 1.8rem;
    }

    /* Popup Mobile Optimization */
    .popup-card {
        flex-direction: column;
        max-width: 90%;
        width: 100%;
        overflow-y: auto;
        max-height: 90vh;
    }

    .popup-header-visual {
        width: 100%;
        height: 140px;
    }

    .plane-animation {
        font-size: 3.5rem;
    }

    .popup-body {
        width: 100%;
        padding: 1.5rem;
        text-align: center;
    }

    .deal-badge {
        align-self: center;
        margin-bottom: 0.8rem;
    }

    .popup-body h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .deal-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .offer-timer {
        align-self: center;
        width: 100%;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .btn-popup-premium {
        width: 100%;
    }

    .info-card.support {
        border-left-color: #7c3aed;
        /* Purple */
    }

    .info-card.compare {
        border-left-color: #0d9488;
        /* Teal */
    }

    .info-card h3 {
        font-size: 1.2rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 1rem;
        color: var(--primary-blue);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .info-card.support h3 {
        color: #7c3aed;
    }

    .info-card.compare h3 {
        color: #0d9488;
    }

    .info-card p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .highlight-text {
        color: #ef4444;
        font-weight: 700;
    }

    /* Sticky Bottom Bar */
    .sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ec4899;
        /* Pink */
        color: #ffffff;
        padding: 1rem;
        text-align: center;
        z-index: 1500;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .sticky-bar-text {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .sticky-bar-phone {
        color: #ffffff;
        text-decoration: none;
        font-weight: 900;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .btn-optimized {
            padding: 0.75rem 1.25rem;
        }

        .btn-optimized-large {
            font-size: 1.2rem;
            padding: 0.8rem 1.5rem;
            width: auto;
            max-width: 100%;
        }

        .popup-content .btn-optimized {
            width: 100%;
            font-size: 1.2rem;
        }

        .navbar {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 5%;
            gap: 0.5rem;
        }

        .nav-contact {
            align-items: flex-end;
        }

        .nav-contact-label {
            display: none;
        }

        .logo-img {
            width: 110px;
            height: auto;
        }

        .btn-optimized-header {
            padding: 0.5rem 0.8rem;
            font-size: 0.85rem;
        }

        .btn-optimized-header .phone_number {
            font-size: 0.85rem;
        }

        .sticky-bar {
            flex-direction: column;
            gap: 0.2rem;
            padding: 0.8rem;
        }

        .sticky-bar-text {
            font-size: 0.9rem;
        }

        .sticky-bar-phone {
            font-size: 1.2rem;
        }

        .reservations-content h2 {
            font-size: 1.8rem;
        }

        /* Popup Mobile Optimization */
        .popup-card {
            flex-direction: column;
            max-width: 90%;
            width: 100%;
            overflow-y: auto;
            max-height: 90vh;
        }

        .popup-header-visual {
            width: 100%;
            height: 140px;
        }

        .plane-animation {
            font-size: 3.5rem;
        }

        .popup-body {
            width: 100%;
            padding: 1.5rem;
            text-align: center;
        }

        .deal-badge {
            align-self: center;
            margin-bottom: 0.8rem;
        }

        .popup-body h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .deal-text {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .offer-timer {
            align-self: center;
            width: 100%;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .btn-popup-premium {
            width: 100%;
        }

        .btn-icon {
            padding: 1rem;
        }

        .btn-content {
            padding: 0 1rem;
            flex: 1;
            text-align: left;
        }

        .no-wait-text {
            justify-content: center;
            margin-top: 1rem;
        }

        .close-popup-btn {
            top: 10px;
            right: 10px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.95);
            color: #333;
        }
    }

    .icon-3d-call {
        text-shadow: 0 1px 0 #ccc,
            0 2px 0 #c9c9c9,
            0 3px 0 #bbb,
            0 4px 0 #b9b9b9,
            0 5px 0 #aaa,
            0 6px 1px rgba(0, 0, 0, .1),
            0 0 5px rgba(0, 0, 0, .1),
            0 1px 3px rgba(0, 0, 0, .3),
            0 3px 5px rgba(0, 0, 0, .2),
            0 5px 10px rgba(0, 0, 0, .25),
            0 10px 10px rgba(0, 0, 0, .2),
            0 20px 20px rgba(0, 0, 0, .15);
        animation: phone-ring 2s infinite ease-in-out;
        display: inline-block;
        color: #ffffff;
        /* Ensure icon is white */
    }

    @keyframes phone-ring {
        0% {
            transform: rotate(0deg) scale(1);
        }

        10% {
            transform: rotate(-25deg) scale(1.1);
        }

        20% {
            transform: rotate(25deg) scale(1.1);
        }

        30% {
            transform: rotate(-25deg) scale(1.1);
        }

        40% {
            transform: rotate(25deg) scale(1.1);
        }

        50% {
            transform: rotate(0deg) scale(1);
        }

        100% {
            transform: rotate(0deg) scale(1);
        }
    }