/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cinzel:wght@700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #d00000;
    --accent: #d00000;
    --white: #FFFFFF;
    --light-grey: #F5F7FA;
    --charcoal: #2D3748;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-cinzel {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.font-allura {
    font-family: 'Allura', cursive;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-grey);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #155a96;
}

/* Premium Styles & Micro-interactions */
.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hover-glow {
    transition: all 0.3s ease;
}
.hover-glow:hover {
    box-shadow: 0 10px 25px -5px rgba(30, 115, 190, 0.4);
    transform: translateY(-3px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hero Overlay */
.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

/* Timeline Custom Styles */
.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 5px;
    box-shadow: 0 0 10px rgba(223, 174, 24, 0.5);
}
.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(30, 115, 190, 0.2);
}

/* Buttons */
.btn-primary {
    background-color: #d00000;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(208,0,0,0.2), transparent);
    transition: all 0.5s ease;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    background-color: #155a96;
    box-shadow: 0 10px 20px -5px rgba(30, 115, 190, 0.4);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #c99c15;
    box-shadow: 0 10px 20px -5px rgba(223, 174, 24, 0.4);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 50;
}
.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.floating-btn:hover {
    transform: scale(1.1);
}
.btn-whatsapp { background: #25D366; }
.btn-whatsapp:hover { box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); }
.btn-call { background: var(--primary); }
.btn-call:hover { box-shadow: 0 0 20px rgba(30, 115, 190, 0.6); }
.btn-email { background: var(--accent); }
.btn-email:hover { box-shadow: 0 0 20px rgba(223, 174, 24, 0.6); }

/* Custom Popup Modal */
.modal-overlay {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

/* Premium Animations */
.animate-spin-slow {
    animation: spin 15s linear infinite;
}

/* Ken Burns Effect removed as requested */
.swiper-slide-active .hero-bg-img {
    /* No animation */
}
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1); }
}
