/* Catering Gourmet Demo - Optimized Styles */

/* === CSS Variables === */
:root {
    --primary-color: #1C2B3A;
    --secondary-color: #8D8781;
    --accent-color: #C0A878;
    --accent-burgundy: #7B2D3A;
    --text-dark: #1C2B3A;
    --text-light: #8D8781;
    --bg-light: #F8F7F2;
    --white-bone: #F8F7F2;
}

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #1C2B3A; /* Fallback color */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('https://images.unsplash.com/photo-1555244162-803834f70033?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: none;
}

.hero-content {
    color: white;
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(28, 43, 58, 0.4), 
        rgba(28, 43, 58, 0.6)
    );
    z-index: 2;
}

/* === Responsive Video Adjustments === */
@media (max-width: 768px) {
    .hero-video {
        height: 120%;
        width: 120%;
        top: -10%;
        left: -10%;
        object-position: center center;
    }
    
    .hero-section::before {
        background: linear-gradient(
            rgba(28, 43, 58, 0.5), 
            rgba(28, 43, 58, 0.7)
        );
    }
}

@media (max-width: 480px) {
    .hero-video {
        height: 150%;
        width: 150%;
        top: -25%;
        left: -25%;
    }
    
    .hero-section::before {
        background: linear-gradient(
            rgba(28, 43, 58, 0.6), 
            rgba(28, 43, 58, 0.8)
        );
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(50px);
    animation: heroTitleAppear 2s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: heroSubtitleAppear 2s ease-out 1s forwards;
}

.hero-cta {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: heroCTAAppear 1.5s ease-out 1.5s forwards;
}

/* === Animations === */
@keyframes heroTitleAppear {
    0% { opacity: 0; transform: translateY(50px) rotateX(90deg); }
    50% { opacity: 0.7; transform: translateY(10px) rotateX(45deg); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

@keyframes heroSubtitleAppear {
    0% { opacity: 0; transform: translateY(30px) scale(0.8); filter: blur(5px); }
    70% { opacity: 0.8; transform: translateY(-5px) scale(1.05); filter: blur(1px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0px); }
}

@keyframes heroCTAAppear {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    50% { opacity: 0.8; transform: translateY(-5px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes blink {
    0%, 50% { border-color: var(--accent-color); }
    51%, 100% { border-color: transparent; }
}

/* === Buttons === */
.btn-primary-custom {
    background: var(--accent-color);
    border: none;
    color: var(--text-dark);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    background: var(--accent-burgundy);
    color: var(--white-bone);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 45, 58, 0.3);
}

/* === Typography === */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

/* === Service Section Headers === */
.service-section-header {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 242, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%);
    border: 2px solid rgba(192, 168, 120, 0.4);
    border-radius: 20px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 25px rgba(28, 43, 58, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 168, 120, 0.5), transparent);
    transition: left 0.6s ease;
}

.service-section-header:hover::before {
    left: 100%;
}

.service-section-header:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(28, 43, 58, 0.25), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(192, 168, 120, 0.7);
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(248, 247, 242, 0.98) 50%, rgba(255, 255, 255, 1) 100%);
}

.service-section-header h3 {
    position: relative;
    z-index: 2;
}

.service-section-header .badge {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-section-header p {
    position: relative;
    z-index: 2;
    font-style: italic;
    font-weight: 300;
}

/* Iconos específicos con efectos */
.service-section-header .fa-building {
    filter: drop-shadow(0 3px 8px rgba(255, 193, 7, 0.5));
    transition: all 0.4s ease;
}

.service-section-header:hover .fa-building {
    filter: drop-shadow(0 5px 15px rgba(255, 193, 7, 0.7));
    transform: scale(1.1);
}

.service-section-header .fa-heart {
    filter: drop-shadow(0 3px 8px rgba(220, 53, 69, 0.5));
    transition: all 0.4s ease;
}

.service-section-header:hover .fa-heart {
    filter: drop-shadow(0 5px 15px rgba(220, 53, 69, 0.7));
    transform: scale(1.1);
}

.service-section-header .fa-star {
    filter: drop-shadow(0 3px 8px rgba(28, 43, 58, 0.5));
    transition: all 0.4s ease;
}

.service-section-header:hover .fa-star {
    filter: drop-shadow(0 5px 15px rgba(28, 43, 58, 0.7));
    transform: scale(1.1);
}

/* === Service Cards === */
.service-card {
    background: linear-gradient(145deg, var(--white-bone) 0%, #ffffff 50%, var(--white-bone) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
    background-clip: padding-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: subtlePulse 4s ease-in-out infinite;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e284 25%, #2c5530 50%, #f4e284 75%, #d4af37 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
    animation: shimmerService 2s ease-in-out;
}

@keyframes shimmerService {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 30px rgba(212, 175, 55, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 30%, #ffffff 70%, #f8f9fa 100%);
}

.service-card:nth-child(odd):hover {
    transform: translateY(-15px) scale(1.02) rotate(1deg);
}

.service-card:nth-child(even):hover {
    transform: translateY(-15px) scale(1.02) rotate(-1deg);
}

.service-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.6s ease;
    transform-origin: center;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(10deg);
    filter: drop-shadow(0 8px 16px rgba(212, 175, 55, 0.3));
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

.service-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover h4 {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.service-card h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e284);
    transition: width 0.6s ease;
}

.service-card:hover h4::after {
    width: 100%;
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 15px 40px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9); }
    50% { box-shadow: 0 18px 45px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 20px rgba(212, 175, 55, 0.05); }
}

/* === Stats Section === */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-burgundy) 50%, var(--primary-color) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white-bone) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: numberGlow 3s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)); transform: scale(1.05); }
}

/* === Gallery === */
.gallery-filters {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 50%, var(--bg-light) 100%);
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    margin: 0.3rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 168, 120, 0.2);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-burgundy) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 168, 120, 0.4);
}

.gallery-filter {
    transition: all 0.4s ease-out;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 2rem;
    height: 300px;
    cursor: pointer;
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.4s ease-out;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
    transform: perspective(1000px) rotateX(3deg) translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-out;
    filter: brightness(0.95) contrast(1.05);
    opacity: 0.9;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 43, 58, 0.75) 0%, rgba(192, 168, 120, 0.65) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: all 0.4s ease-out;
    backdrop-filter: blur(3px);
    transform: translateY(20px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* === Contact Form === */
.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.3rem rgba(212, 175, 55, 0.15), 0 8px 25px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.contact-form .btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-burgundy) 50%, var(--accent-color) 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    color: var(--white-bone);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-form .btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 45, 58, 0.4);
    background: linear-gradient(135deg, var(--accent-burgundy) 0%, var(--accent-color) 50%, var(--accent-burgundy) 100%);
}

/* === Menu Sections === */
.menu-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.menu-section h4 {
    text-align: center !important;
    position: relative;
    margin-bottom: 2.5rem !important;
    padding-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.menu-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-burgundy) 50%, var(--accent-color) 100%);
    border-radius: 2px;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.4);
}

/* === Timeline === */
.testimonials-timeline {
    position: relative;
    padding: 3rem 0;
    overflow-x: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    min-width: fit-content;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e284 50%, #d4af37 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #d4af37;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #d4af37;
    border-radius: 50%;
    border: 4px solid white;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.timeline-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid #d4af37;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-photo {
    transform: scale(1.1);
}

.timeline-stars {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.timeline-quote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.timeline-quote::before {
    content: '"';
    font-size: 3rem;
    color: #d4af37;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.timeline-quote::after {
    content: '"';
    font-size: 3rem;
    color: #d4af37;
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: serif;
}

.timeline-name {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.timeline-role {
    color: #777;
    font-size: 0.9rem;
    text-align: center;
}

.timeline-date {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c5530;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.timeline-name {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

/* === Navigation === */
.menu-separator::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.menu-separator:hover::before {
    background: var(--accent-color);
    height: 25px;
}

.nav-link {
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-link:hover {
    background: rgba(192, 168, 120, 0.15);
    color: var(--accent-color) !important;
}

/* === Floating Elements === */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: white;
}

.floating-scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-scroll-top:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: scale(1.1);
}

.floating-exit-demo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #dc3545;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.floating-exit-demo .exit-text {
    opacity: 0;
    margin-left: 8px;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
    position: absolute;
    left: 45px;
    width: 0;
    overflow: hidden;
}

.floating-exit-demo:hover .exit-text {
    width: auto;
}

.floating-exit-demo:hover {
    background: #c82333;
    color: white;
    width: 180px;
    border-radius: 25px;
    justify-content: flex-start;
    padding-left: 15px;
}

.floating-exit-demo:hover .exit-text {
    opacity: 1;
}

.floating-exit-demo:hover .fas {
    margin-right: 8px;
}

/* === Responsive Design === */
@media (min-width: 769px) {
    .d-flex.align-items-center .rounded-circle {
        flex-shrink: 0;
        min-width: 45px;
        max-width: 45px;
        min-height: 45px;
        max-height: 45px;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; margin-bottom: 3rem; }
    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-content {
        padding: 2rem 1rem;
        margin-top: 0;
    }
    .menu-separator::before { display: none; }
    .hero-content .d-flex { margin-bottom: 2rem; }
    .hero-content .btn { margin-bottom: 1rem; }
    .trust-indicators { display: none !important; }
}

@media (max-width: 576px) {
    .hero-content .btn { font-size: 0.9rem; padding: 0.6rem 1.2rem; }
    .hero-section {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .hero-content {
        padding: 1.5rem 1rem;
    }
}