.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.97));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
    animation: gradientMove 15s ease infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--brand-black), var(--brand-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleSlide 1s ease;
}

.accent-line {
    width: 100px;
    height: 3px;
    background: var(--brand-red);
    margin: 1rem 0;
    animation: lineGrow 1.5s ease forwards;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

@keyframes titleSlide {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding-top: 60px;
    }
}

/* Contact Cards */
.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: rgba(255, 255, 255, 0.9);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: 0.5s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Form Section */
.bfc-contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bfc-form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.bfc-form-control:focus {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

/* Location Cards */
.product-line-card {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.product-line-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-line-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transform: translateY(60%);
    transition: transform 0.5s ease;
}

/* FAQ Section */
.highlight-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand-red), #ff4444);
}

/* CTA Section */
.bfc-cta-wrapper {
    padding: 120px 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.95), rgba(255, 0, 0, 0.95));
    position: relative;
    overflow: hidden;
    color: white;
}

.bfc-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.1) 75%);
    background-size: 20px 20px;
    opacity: 0.1;
}

/* Map Section */
.bfc-map-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.bfc-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.bfc-location-card {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    backdrop-filter: blur(10px);
    animation: slideIn 1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
        padding-top: 60px;
    }

    .product-line-card {
        height: 300px;
    }

    .bfc-location-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 20px auto;
        max-width: 90%;
    }

    .bfc-cta-wrapper {
        padding: 60px 0;
    }

    .product-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .bfc-contact-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

@keyframes titleSlide {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translate(100%, -50%);
        opacity: 0;
    }

    to {
        transform: translate(0, -50%);
        opacity: 1;
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}