/* ================================
   TITANIA TECH - LANDING PAGE CSS
   Versión Mejorada con Tema Dark
   ================================ */

/* Variables CSS */
:root {
    --primary-orange: #fa510b;
    --secondary-orange: #fa930a;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #fa510b, #fa930a);
    --gradient-dark: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    --shadow-glow: 0 0 30px rgba(250, 81, 11, 0.15);
    --shadow-intense: 0 20px 60px rgba(250, 81, 11, 0.3);
    --border-glow: rgba(250, 81, 11, 0.3);
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* ==================
   NAVBAR MEJORADA
   ================== */
.navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(250, 81, 11, 0.1);
    transition: var(--transition-fast);
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98) !important;
    box-shadow: var(--shadow-glow);
}

.navbar-brand img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(250, 81, 11, 0.3));
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(250, 81, 11, 0.5));
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.75rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

.navbar-toggler {
    border: 1px solid var(--primary-orange);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(250, 81, 11, 0.25);
}

/* ==================
   HERO SECTION
   ================== */
.hero-section {
    background: linear-gradient(135deg, 
        rgba(250, 81, 11, 0.9) 0%, 
        rgba(26, 26, 26, 0.95) 50%,
        rgba(250, 147, 10, 0.8) 100%),
        radial-gradient(circle at 30% 50%, rgba(250, 81, 11, 0.2) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(250,81,11,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #fa930a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
    line-height: 1.1;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(250, 81, 11, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(250, 147, 10, 0.8)); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(250, 81, 11, 0.3));
    animation: pulse-float 4s ease-in-out infinite;
}

@keyframes pulse-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

/* ==================
   BOTONES Y CTAs
   ================== */
.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(250, 81, 11, 0.3);
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-intense);
    color: white;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
}

.demo-button {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-fast);
    margin: 0.5rem;
    cursor: pointer;
}

.demo-button:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 81, 11, 0.3);
}

/* ==================
   CARDS Y TARJETAS
   ================== */
.service-card, .feature-card, .testimonial-card {
    background: var(--gradient-dark);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(250, 81, 11, 0.1);
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before, .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover, .feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before, .feature-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(250, 81, 11, 0.4));
}

/* ==================
   BLOG GRID
   ================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--gradient-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(250, 81, 11, 0.1);
    transition: var(--transition-slow);
    position: relative;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h4 {
    color: var(--primary-orange);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-meta i {
    color: var(--primary-orange);
}

/* ==================
   PODCAST PLAYER
   ================== */
.podcast-player {
    background: var(--gradient-dark);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(250, 147, 10, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-fast);
    margin-bottom: 1.5rem;
}

.podcast-player:hover {
    border-color: rgba(250, 147, 10, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(250, 147, 10, 0.2);
}

.podcast-artwork {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.podcast-artwork:hover .play-overlay {
    opacity: 1;
}

.podcast-artwork:hover img {
    transform: scale(1.1);
}

.play-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(250, 81, 11, 0.4);
}

.podcast-info h5 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.podcast-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.podcast-meta i {
    color: var(--secondary-orange);
}

/* ==================
   TESTIMONIOS
   ================== */
.testimonial-card {
    background: var(--gradient-dark);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(250, 81, 11, 0.1);
    position: relative;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-orange);
    line-height: 1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-orange);
    margin-right: 1rem;
    object-fit: cover;
}

/* ==================
   FAQ ACCORDION
   ================== */
.faq-accordion .accordion-item {
    background: var(--gradient-dark);
    border: 1px solid rgba(250, 81, 11, 0.1);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    border-radius: 15px !important;
    transition: var(--transition-fast);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(250, 81, 11, 0.1), rgba(250, 147, 10, 0.1));
    color: var(--primary-orange);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(250, 81, 11, 0.25);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fa510b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    color: var(--text-light);
    padding: 1.5rem;
    line-height: 1.7;
}

/* ==================
   PRECIO CARDS
   ================== */
.price-card {
    background: var(--gradient-dark);
    border-radius: 20px;
    border: 1px solid rgba(250, 81, 11, 0.1);
    transition: var(--transition-slow);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.price-card.featured {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.price-card.featured::before {
    content: 'Más Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.price .fs-6 {
    font-size: 1rem !important;
    color: var(--text-muted);
    font-weight: 400;
}

.price-card .card-header {
    background: var(--gradient-primary) !important;
    border-bottom: none;
}

.price-card .list-unstyled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(250, 81, 11, 0.1);
}

.price-card .list-unstyled li:last-child {
    border-bottom: none;
}

.price-card .fa-check {
    color: var(--primary-orange) !important;
}

/* ==================
   DEMO SECTION
   ================== */
.demo-section {
    background: var(--gradient-dark);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(250, 81, 11, 0.2);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 81, 11, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.demo-section > * {
    position: relative;
    z-index: 2;
}

/* ==================
   FOOTER
   ================== */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-top: 1px solid rgba(250, 81, 11, 0.1);
    padding: 3rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.footer h5, .footer h6 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 1rem;
    color: white;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(250, 81, 11, 0.3);
    color: white;
}

/* ==================
   ANIMACIONES
   ================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(250, 81, 11, 0.3);
    border-top: 3px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ==================
   BREADCRUMBS
   ================== */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-orange);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--text-muted);
}

/* ==================
   FORMULARIOS
   ================== */
.form-control {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(250, 81, 11, 0.2);
    color: var(--text-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    background: rgba(26, 26, 26, 0.9);
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(250, 81, 11, 0.25);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ==================
   BADGES
   ================== */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.75rem;
}

.badge.bg-primary {
    background: var(--gradient-primary) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #17a2b8, #6f42c1) !important;
}

.badge.bg-secondary {
    background: linear-gradient(135deg, #6c757d, #495057) !important;
}

/* ==================
   RESPONSIVE DESIGN
   ================== */
@media (max-width: 1200px) {
    .price-card.featured {
        transform: scale(1.02);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .demo-section {
        padding: 2rem;
    }
    
    .service-card, .feature-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .podcast-player {
        flex-direction: column;
        text-align: center;
    }
    
    .podcast-artwork {
        margin-bottom: 1rem;
    }
    
    .price-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .demo-button {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .social-links {
        text-align: center;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card, .feature-card, .testimonial-card {
        padding: 1.5rem;
    }
    
    .demo-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
        text-align: center;
    }
}

/* ==================
   ACCESIBILIDAD
   ================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states para accesibilidad */
button:focus,
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* ==================
   UTILIDADES
   ================== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-dark {
    background: var(--gradient-dark) !important;
}

.border-gradient {
    border: 1px solid transparent;
    background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                var(--gradient-primary) border-box;
}

.shadow-glow {
    box-shadow: var(--shadow-glow) !important;
}

.shadow-intense {
    box-shadow: var(--shadow-intense) !important;
}

/* ==================
   ESTADOS DE HOVER GLOBALES
   ================== */
.hover-lift {
    transition: var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

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

/* ==================
   COMPONENTES ESPECIALES
   ================== */
.floating-action {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1000;
}

.floating-action:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-intense);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 81, 11, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(250, 81, 11, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 81, 11, 0);
    }
}