/* Landing Page Styles - Red & Black Theme */

/* Hero Section - Enhanced */
.hero-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 248, 0.8)), 
                url('../background.jpg') center/cover;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #dc143c, #ff6b6b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem !important;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    margin-bottom: 2rem !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.feature-item .icon {
    font-size: 1.2rem;
}

.hero-buttons {
    gap: 1rem;
}

.hero-cta {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    transform: scale(1);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    animation: float 3s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(220, 20, 60, 0.6);
    font-size: 2rem;
    animation: floatIcon 4s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-4 {
    top: 10%;
    right: 25%;
    animation-delay: 0.8s;
}

.floating-5 {
    bottom: 15%;
    right: 10%;
    animation-delay: 2.2s;
}

.floating-6 {
    top: 45%;
    left: 5%;
    animation-delay: 4s;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc143c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-item {
    color: #333 !important;
}

.navbar-item:hover {
    background-color: rgba(220, 20, 60, 0.1);
    color: #dc143c !important;
}

/* Service Cards */
.service-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #dc143c;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
    border-color: #8b0000;
}

.service-card .title {
    color: #8b0000 !important;
}

.service-card .image img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(100%) saturate(7463%) hue-rotate(0deg) brightness(89%) contrast(119%);
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.contact-item .icon {
    margin-right: 0.75rem;
    width: 24px;
    color: #dc143c !important;
}

/* Specialties Section */
.specialty-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #dc143c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.2);
}

.specialty-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #dc143c, #ff1744);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.specialty-content h3 {
    margin-bottom: 1rem;
}

.specialty-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.specialty-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.specialty-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc143c;
    font-weight: bold;
}

/* Brands Slider */
.brands-slider {
    overflow: hidden;
    padding: 2rem 0;
    background: white;
    position: relative;
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.brand-slide {
    flex: 0 0 auto;
    margin: 0 2rem;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Map Container */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .title {
        font-size: 2rem !important;
    }
    
    .hero .subtitle {
        font-size: 1.2rem !important;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .partner-logo {
        max-width: 120px;
        margin-bottom: 1rem;
    }
    
    .brand-logo {
        height: 40px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
.section {
    padding: 4rem 1.5rem;
}

/* Button Enhancements - Red Theme */

.button.is-light {
    background-color: white;
    border-color: #dc143c;
    color: #dc143c;
}

.button.is-light:hover {
    background-color: #dc143c;
    color: white;
}

/* Title Enhancements */
.title.is-1, .title.is-2 {
    font-weight: 700;
    line-height: 1.2;
    color: #8b0000 !important;
}

.has-text-success {
    color: #dc143c !important;
}

/* CTA Section */
.has-background-success {
    background-color: #8b0000 !important;
}

/* Footer */
.footer.has-background-black {
    background-color: #000000 !important;
    padding: 2rem 1.5rem;
}

/* Text Colors */
.subtitle {
    color: #333 !important;
}

/* Box styling */
.box {
    border: 1px solid #dc143c;
}

.box .title {
    color: #8b0000 !important;
}
