/* =========================================
   SWAT DJs - PRO THEME (UPDATED)
   Focus: Gym, Energy, Professional Audio
========================================= */

:root {
    --bg-dark: #0a0a0a;
    /* Deeper black */
    --bg-card: #141414;
    --primary: #ff3333;
    /* More intense red */
    --accent: #00ff88;
    /* Electric green */
    --text-main: #ffffff;
    --text-sec: #b3b3b3;

    --font-head: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --glow-green: 0 0 15px rgba(0, 255, 136, 0.4);
    --glow-red: 0 0 15px rgba(255, 51, 51, 0.4);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 51, 51, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 255, 136, 0.03), transparent 25%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* UTILITY: Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* ================= HEADER ================= */
header {
    background: rgba(10, 10, 10, 0.85);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-head);
    color: var(--primary);
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

/* NEW LOGO IMAGE STYLE */
.logo-img {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px var(--accent));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--text-main);
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

/* Flags */
.lang-selector {
    display: flex;
    gap: 10px;
    margin-left: 10px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-flag {
    width: 24px;
    height: 16px;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 2px;
    filter: grayscale(100%);
}

.lang-flag:hover {
    opacity: 0.8;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.lang-flag.active {
    opacity: 1;
    transform: scale(1.2);
    filter: grayscale(0%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

#flag-es {
    background-image: url('../img/es.webp');
}

#flag-ca {
    background-image: url('../img/es-ct.webp');
}

/* Updated to use optimized es-ct */
#flag-en {
    background-image: url('../img/us.webp');
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background with dynamic overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/hero-fitness.webp') center/cover no-repeat;
    filter: brightness(0.4) contrast(1.1);
    z-index: -2;
    animation: zoomHero 20s infinite alternate;
}

@keyframes zoomHero {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, #0a0a0a 100%);
    z-index: -1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Primary Button (Neon Style) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-head);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    background-color: #33ff99;
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
}

/* ================= GRID / PRODUCTS ================= */
.section-title {
    font-size: 2.2rem;
    margin: 100px 0 60px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.5px;
}

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

/* Frosted Glass Card */
.product-card {
    background: rgba(30, 30, 30, 0.4);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: 0.4s;
    height: 100%;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-img {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
}

/* Audio Player Button - CUSTOM TURNTABLE LOOK */
.audio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.product-card:hover .audio-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.dj-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(4px);
}

.dj-play-btn:hover {
    transform: scale(1.15);
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--accent);
    color: var(--accent);
}

.dj-play-btn.is-playing {
    background: radial-gradient(circle, #222 0%, #000 100%);
    border: 3px solid var(--accent);
    color: var(--accent);
    animation: spinVinyl 2s linear infinite;
    box-shadow: 0 0 25px var(--glow-green);
    /* Ensure icon stays centered visually even when spinning */
}

@keyframes spinVinyl {
    100% {
        transform: rotate(360deg);
    }
}

/* Content */
.product-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: var(--font-head);
    color: #fff;
}

.product-content p {
    margin-bottom: 30px;
    flex-grow: 1;
    color: var(--text-sec);
    font-size: 0.95rem;
    font-weight: 300;
}

.tag {
    background: rgba(255, 51, 51, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.btn-action {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 0;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-action:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.3);
    transform: translateY(-2px);
}

/* ================= DJ CONSOLE (SEO) ================= */
.dj-console-box {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 1px solid #333;
    border-radius: 30px;
    padding: 60px;
    margin-top: 100px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    isolation: isolate;
}

/* Cool Glow underneath */
.dj-console-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--accent));
    z-index: -1;
    border-radius: 32px;
    opacity: 0.3;
}

.console-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.console-header h2 {
    font-family: var(--font-head);
    color: #fff;
    font-size: 2.2rem;
    text-transform: uppercase;
    text-align: center;
}

/* VU Meter Animation */
.vu-meter {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 30px;
}

.vu-meter span {
    width: 6px;
    background: #444;
    border-radius: 2px;
    animation: vuBounce 0.5s infinite ease-in-out alternate;
}

.vu-meter span:nth-child(1) {
    height: 40%;
    background: var(--accent);
}

.vu-meter span:nth-child(2) {
    height: 70%;
    animation-delay: 0.1s;
    background: var(--accent);
}

.vu-meter span:nth-child(3) {
    height: 100%;
    animation-delay: 0.2s;
    background: var(--primary);
}

@keyframes vuBounce {
    from {
        height: 20%;
        opacity: 0.5;
    }

    to {
        height: 100%;
        opacity: 1;
    }
}

.console-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    border-top: 1px solid #222;
    padding-top: 50px;
}

.console-highlight {
    background: rgba(255, 51, 51, 0.05);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.formats-badge {
    margin-top: 25px;
    font-size: 2rem;
    display: flex;
    gap: 25px;
    color: #666;
}

.formats-badge i:hover {
    color: #fff;
    transform: scale(1.2);
    transition: 0.3s;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    background: #000;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #0a0a0a, transparent);
    pointer-events: none;
}

.quote-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    transition: .4s;
}

.quote-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Language Switcher in Testimonials */
.lang-switch button {
    background: transparent;
    border: 1px solid #333;
    color: #666;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.lang-switch button.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* ================= CONTACT ================= */
.swat-contact {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
}

.swat-title {
    color: var(--accent);
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.swat-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* MAIN GRID LAYOUT - Restored */
.swat-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.swat-direct {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.swat-form-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.swat-form-box h3 {
    margin-bottom: 25px;
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.4rem;
    text-transform: uppercase;
}

.swat-field input,
.swat-field textarea {
    width: 100%;
    padding: 18px 22px;
    background: #050505;
    border: 1px solid #222;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.swat-field input:focus,
.swat-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
    background: #080808;
}

.swat-send {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent), #00cc6a);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.swat-send:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

/* Buttons Social */
/* Buttons Social - Restored Flex Layout */
.swat-btn {
    background: #111;
    border: 1px solid #222;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    width: 100%;
}

.swat-btn i {
    font-size: 2rem;
}

.swat-btn div {
    display: flex;
    flex-direction: column;
}

.swat-btn span {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.swat-btn small {
    color: #666;
    font-size: 0.85rem;
}

.swat-btn.whatsapp {
    border-color: #25d366;
}

.swat-btn.whatsapp i {
    color: #25d366;
}

.swat-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.2);
}

.swat-btn.email {
    border-color: #ff3333;
}

.swat-btn.email i {
    color: #ff3333;
}

.swat-btn.email:hover {
    background: rgba(255, 51, 51, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.2);
}

/* ================= FOOTER ================= */
footer {
    border-top: 1px solid #222;
    padding: 80px 0;
    background: #050505;
    color: #555;
    font-size: 0.9rem;
}

/* ================= WHATSAPP FLOAT DJ STYLE ================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    z-index: 9999;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    animation: pulse-green 2s infinite;
    border: 3px solid #1a1a1a;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background: #128c7e;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
    color: #fff;
}

.whatsapp-float i {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ================= MOBILE ================= */
/* ================= MOBILE ================= */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 2005;
    width: 50px;
    height: 50px;
    padding: 10px;
    /* Container for the 3 bars */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00e676);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* DJ Pulse Animation for the toggle */
@keyframes dj-pulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        right: 20px;
        top: 20px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        animation: dj-pulse 2s infinite;
    }

    /* Active State (Hamburger to X) */
    .mobile-menu-toggle.active {
        animation: none;
        /* Stop pulsing when open */
        background: transparent;
        border: none;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
        background: #ff3333;
        box-shadow: 0 0 15px rgba(255, 51, 51, 0.8);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
        background: #ff3333;
        box-shadow: 0 0 15px rgba(255, 51, 51, 0.8);
    }

    /* Fullscreen Mobile Menu */
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.98);
        /* Almost solid black */
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Start from top to avoid clipping */
        align-items: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2000;
        padding: 120px 20px 40px;
        /* More top padding to clear the X button */
        overflow-y: auto;
        height: 100vh !important;
        /* Force full height */
    }

    /* Active Menu */
    .nav-links.active {
        transform: translateX(0);
    }

    /* Menu Links */
    .nav-links a {
        font-family: var(--font-head);
        font-size: 2.5rem;
        /* Bigger */
        line-height: 1.2;
        font-weight: 900;
        color: #fff;
        text-transform: uppercase;
        position: relative;
        padding: 5px 0;
        transition: 0.3s;
        /* Initial state for stagger anim */
        opacity: 0;
        transform: translateY(30px);
        text-align: center;
        display: block;
    }

    /* Stagger Animation for Links */
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.4s ease forwards;
    }

    /* Stagger Delays */
    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a:hover {
        color: var(--accent);
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
        transform: scale(1.1) !important;
        /* Override stagger transform */
    }

    /* Language Selector in Mobile */
    .lang-selector {
        margin-top: 30px;
        border: none;
        padding: 0;
        gap: 25px;
        transform: scale(1.5);
    }

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

    .swat-contact-grid {
        grid-template-columns: 1fr;
    }

    .console-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ================= POPUP ================= */
#swat-popup .swat-popup-box {
    background: #111;
    border: 1px solid #333;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* ================= POPUP FIXED ================= */
#swat-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

#swat-popup.show {
    opacity: 1;
    pointer-events: auto;
}

#swat-popup .swat-popup-box {
    background: linear-gradient(145deg, #0f0f0f, #040404);
    border: 2px solid #00e676;
    border-radius: 28px;
    padding: 45px 35px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 230, 118, 0.5);
    animation: swatIn 0.4s ease;
}

@keyframes swatIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#swat-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

#swat-title {
    color: #00e676;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#swat-message {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 25px;
}

#swat-close {
    background: linear-gradient(135deg, #00e676, #00b85a);
    border: none;
    color: #000;
    font-weight: 900;
    padding: 14px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

#swat-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px #00e676;
}

/* Footer Logo */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: translateY(-5px);
}

.logo-footer {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.footer-logo-link:hover .logo-footer {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Status Colors */
#swat-popup.success .swat-popup-box {
    border-color: #00e676;
}

#swat-popup.error .swat-popup-box {
    border-color: #ff4d4d;
    box-shadow: 0 0 50px rgba(255, 77, 77, 0.4);
}

#swat-popup.error #swat-title {
    color: #ff4d4d;
}