:root {
    --brand-red: #ff0000;
    --brand-black: #000000;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand img:hover {
    transform: scale(1.1) rotate(-2deg);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--brand-red);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.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;
}

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

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

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

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

.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;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card img {
    transition: transform 0.5s ease;
}

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

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

@keyframes lineGrow {
    to {
        width: 100px;
    }
}

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

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

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

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

.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;
}

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

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

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

    .product-card {
        margin-bottom: 1.5rem;
    }

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

    .accent-line {
        margin: 1rem auto;
    }
}

.btn-explore {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--brand-red), #ff4444);
    border: none;
    color: white;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-explore::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: 0.5s;
}

.btn-explore:hover::before {
    left: 100%;
}

.product-category {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(100%);
    transition: 0.5s ease;
}

.product-card:hover .product-category {
    transform: translateY(0);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.product-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--brand-black), var(--brand-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
    background: white;
    position: relative;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-black);
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--brand-red);
    margin-right: 0.5rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--brand-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.explore-btn {
    background: linear-gradient(45deg, var(--brand-red), #ff4444);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.category-nav {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-btn {
    background: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--brand-black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-btn.active {
    background: linear-gradient(45deg, var(--brand-red), #ff4444);
    color: white;
}

.category-btn:hover {
    transform: translateY(-2px);
}

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

    .category-nav {
        flex-direction: column;
        align-items: center;
    }

    .category-btn {
        width: 100%;
        max-width: 300px;
    }
}

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.97));
    position: relative;
    overflow: hidden;
}

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

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

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.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, #ff0000, #ff4444);
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.value-icon {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.company-image {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

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

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

.vision-mission {
    position: relative;
    z-index: 1;
}

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

    .stat-card {
        margin-bottom: 1rem;
    }
}

.why-us-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    width: 150vmax;
    height: 150vmax;
    top: -50vmax;
    left: -50vmax;
    z-index: -1;
    background: rgba(255, 0, 0, 0.05);
    animation: rotate 30s linear infinite;
    transform-origin: center;
}

.animated-bg::after {
    background: rgba(0, 0, 0, 0.05);
    animation-delay: -15s;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
    width: 60px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.quality-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #000, #333);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background:
        linear-gradient(45deg, #ff0000 25%, transparent 25%) -50px 0,
        linear-gradient(-45deg, #ff0000 25%, transparent 25%) -50px 0,
        linear-gradient(45deg, transparent 75%, #ff0000 75%) -50px 0,
        linear-gradient(-45deg, transparent 75%, #ff0000 75%) -50px 0;
    background-size: 100px 100px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: -50px 0, -50px 0, -50px 0, -50px 0;
    }

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

.cert-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.cert-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.cert-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #ff0000;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.cert-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
}

.cert-description {
    color: #666;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cert-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.cert-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    margin: 1rem auto;
}

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

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

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

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

@media (max-width: 768px) {
    .cert-card {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.products-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.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;
}

.product-line-card:hover .product-line-overlay {
    transform: translateY(0);
}

.product-line-card:hover .product-line-image {
    transform: scale(1.1);
}

.product-line-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.product-line-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff0000;
    transition: width 0.3s ease;
}

.product-line-card:hover .product-line-title::after {
    width: 100px;
}

.product-line-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-line-card:hover .product-line-description {
    opacity: 1;
    transform: translateY(0);
}

.product-line-features {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.product-line-card:hover .product-line-features {
    opacity: 1;
    transform: translateY(0);
}

.feature-itemd {
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feature-item i {
    color: #ff0000;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    background: #ff0000;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.product-line-card:hover .explore-btn {
    opacity: 1;
    transform: translateY(0);
}

.explore-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .product-line-card {
        height: 350px;
    }

    .product-line-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.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-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.bfc-shape-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.bfc-cta-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bfc-cta-subheading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bfc-stats-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.bfc-stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.bfc-stat-box:hover {
    transform: translateY(-10px);
}

.bfc-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bfc-stat-text {
    font-size: 1rem;
    opacity: 0.8;
}

.bfc-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    color: #ff0000;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.bfc-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #ff0000;
}

.bfc-action-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.bfc-action-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .bfc-cta-heading {
        font-size: 2.5rem;
    }

    .bfc-cta-subheading {
        font-size: 1.2rem;
    }

    .bfc-stat-box {
        min-width: 150px;
    }
}

.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;
}

.bfc-contact-wrapper {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.bfc-contact-heading {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}

.bfc-contact-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bfc-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.bfc-info-item:hover {
    transform: translateX(10px);
}

.bfc-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.bfc-info-icon i {
    color: white;
    font-size: 1.2rem;
}

.bfc-info-content h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.bfc-info-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.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);
}

.bfc-submit-btn {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.bfc-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.bfc-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.bfc-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    transition: all 0.3s ease;
}

.bfc-social-btn:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .bfc-contact-info {
        margin-bottom: 2rem;
    }
}

.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-map-container {
    width: 100%;
    height: 100%;
    filter: grayscale(0.5);
    transition: all 0.5s ease;
}

.bfc-map-container:hover {
    filter: grayscale(0);
}

.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;
}

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

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

.bfc-location-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff0000;
}

.bfc-location-info {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.bfc-location-info i {
    color: #ff0000;
    margin-right: 0.5rem;
}

.bfc-footer {
    background: #111;
    color: white;
    padding: 4rem 0 0;
}

.bfc-footer-logo {
    margin-bottom: 1.5rem;
}

.bfc-footer-logo img {
    height: 40px;
}

.bfc-footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.bfc-footer-links h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.bfc-footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff0000;
}

.bfc-footer-links ul {
    list-style: none;
    padding: 0;
}

.bfc-footer-links li {
    margin-bottom: 0.5rem;
}

.bfc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.bfc-footer-links a:hover {
    color: #ff0000;
    padding-left: 5px;
}

.bfc-footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.bfc-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.bfc-social-icon:hover {
    background: #ff0000;
    transform: translateY(-5px);
}

.bfc-footer-bottom {
    background: #000;
    padding: 1.5rem 0;
    margin-top: 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .bfc-location-card {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin: 1rem auto;
        max-width: 90%;
    }

    .bfc-footer-section {
        margin-bottom: 2rem;
    }
}

.bfc-testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.bfc-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(255, 0, 0, 0.05) 25%, transparent 25%) -50px 0,
        linear-gradient(225deg, rgba(255, 0, 0, 0.05) 25%, transparent 25%) -50px 0;
    background-size: 100px 100px;
    animation: patternShift 20s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

.bfc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.bfc-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.bfc-section-title {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: 700;
}

.bfc-section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.bfc-testimonial-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0;
    /* Added padding */
}

.bfc-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.bfc-testimonial-slide {
    flex: 0 0 100%;
    /* Changed to flex property */
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.bfc-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.bfc-quote-icon {
    position: absolute;
    top: -30px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8B0000, #ff0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    z-index: 2;
}

.bfc-client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.bfc-client-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.bfc-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bfc-client-details {
    flex-grow: 1;
}

.bfc-client-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.bfc-client-position {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

.bfc-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin: 20px 0;
}

.bfc-rating {
    color: #FFD700;
    font-size: 1rem;
}

.bfc-company-logo {
    max-width: 120px;
    opacity: 0.7;
    margin-top: 20px;
}

.bfc-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B0000;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 3;
}

.bfc-carousel-nav:hover {
    background: #8B0000;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.bfc-prev {
    left: 0;
}

.bfc-next {
    right: 0;
}

.bfc-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.bfc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bfc-dot.active {
    background: #8B0000;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .bfc-testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .bfc-section-title {
        font-size: 2rem;
    }

    .bfc-carousel-nav {
        width: 35px;
        height: 35px;
    }

    .bfc-testimonial-slide {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .bfc-testimonial-card {
        padding: 20px;
        margin-top: 30px;
    }

    .bfc-quote-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        right: 20px;
    }

    .bfc-client-image {
        width: 60px;
        height: 60px;
    }
}

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

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

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes floatAnimationEven {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes glowEffect {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(139, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 15px 40px rgba(139, 0, 0, 0.2);
    }
}

@keyframes tagWiggle {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.bfc-factory-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.bfc-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(139, 0, 0, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.bfc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.bfc-section-title {
    font-size: 2.5rem;
    color: #8B0000;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: slideInFromBottom 1s ease forwards;
}

.bfc-partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
}

.bfc-partner-card {
    width: 100%;
    background: white;
    padding: 15px;
    border-radius: 10px;
    transform: rotate(-2deg);
    opacity: 0;
    animation: floatAnimation 6s ease-in-out infinite,
        slideInFromBottom 1s ease forwards;
    animation-delay: var(--delay);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bfc-partner-card:nth-child(even) {
    transform: rotate(2deg);
    animation: floatAnimationEven 6s ease-in-out infinite,
        slideInFromBottom 1s ease forwards;
    animation-delay: var(--delay);
}

.bfc-partner-card:hover {
    animation: none;
    transform: rotate(0) translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.2);
}

.bfc-partner-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.bfc-partner-card:hover .bfc-partner-image {
    transform: scale(1.05);
}

.bfc-partner-info {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.bfc-partner-card:hover .bfc-partner-info {
    background: linear-gradient(45deg, #f8f9fa, white);
}

.bfc-partner-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.bfc-partner-card:hover .bfc-partner-title {
    color: #8B0000;
}

.bfc-partner-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.bfc-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #8B0000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.bfc-partner-card:hover .bfc-tag {
    animation: tagWiggle 1s ease;
    background: linear-gradient(45deg, #8B0000, #ff0000);
}

.bfc-expand-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8B0000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.bfc-partner-card:hover .bfc-expand-btn {
    opacity: 1;
    transform: scale(1);
}

.bfc-expand-btn:hover {
    transform: scale(1.1);
    background: #ff0000;
}

.bfc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bfc-modal.active {
    display: flex;
    opacity: 1;
}

.bfc-modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.bfc-modal.active .bfc-modal-content {
    transform: scale(1);
}

.bfc-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bfc-close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bfc-close-modal:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .bfc-partner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bfc-partner-card {
        animation: slideInFromBottom 1s ease forwards;
    }

    .bfc-partner-card:nth-child(even) {
        animation: slideInFromBottom 1s ease forwards;
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 75px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-icon {
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-message {
    position: absolute;
    right: 80px;
    bottom: 5px;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.whatsapp-message:after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: 20px;
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-message p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.whatsapp-pulse {
    position: absolute;
    border: 3px solid #25D366;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    animation: pulse 1.5s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/*  */

.error-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.bfc-form-control.error {
    border-color: #ff0000 !important;
}

.bfc-alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.bfc-alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.bfc-alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 0.2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}
/*  */
.contact-alert {
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.contact-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
  /* Exhibition Section Styles */
.exhibition-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.97));
    position: relative;
    overflow: hidden;
}

.exhibition-section::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;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--brand-black), var(--brand-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Exhibition Filters */
.exhibition-filters {
    position: relative;
    z-index: 1;
}

.category-nav {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-btn {
    background: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--brand-black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-btn.active {
    background: linear-gradient(45deg, var(--brand-red), #ff4444);
    color: white;
}

.category-btn:hover {
    transform: translateY(-2px);
}

/* Exhibition Cards */
.exhibition-grid {
    position: relative;
    z-index: 1;
}

.exhibition-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
}

.exhibition-card.animated {
    opacity: 1;
    transform: translateY(0);
    animation: cardAppear 0.6s forwards;
}

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.exhibition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.exhibition-media {
    position: relative;
    overflow: hidden;
}

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

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

/* Equal Media Containers for Consistent Card Appearance */
.exhibition-media-equal {
    position: relative;
    overflow: hidden;
}

.equal-media-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates a 1:1 aspect ratio (square) */
    background-color: #f8f8f8;
    overflow: hidden;
}

.exhibition-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.exhibition-card:hover .exhibition-cover-image {
    transform: scale(1.1);
}

.exhibition-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exhibition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibition-card:hover .exhibition-overlay {
    opacity: 1;
}

.play-reel-btn,
.view-invitation-btn,
.view-gallery-btn {
    width: 60px;
    height: 60px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.exhibition-card:hover .play-reel-btn,
.exhibition-card:hover .view-invitation-btn,
.exhibition-card:hover .view-gallery-btn {
    transform: scale(1);
    opacity: 1;
}

.play-reel-btn:hover,
.view-invitation-btn:hover,
.view-gallery-btn:hover {
    background: white;
    color: var(--brand-red);
    transform: scale(1.1);
}

.exhibition-content {
    padding: 1.5rem;
    background: white;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.exhibition-status {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    z-index: 2;
}

.exhibition-status.upcoming {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.exhibition-status.current {
    background: linear-gradient(45deg, #007bff, #17a2b8);
}

.exhibition-status.past {
    background: linear-gradient(45deg, #6c757d, #495057);
}

.exhibition-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--brand-black);
}

.exhibition-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.exhibition-date,
.exhibition-location {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.exhibition-date i,
.exhibition-location i {
    color: var(--brand-red);
    margin-right: 0.5rem;
}

.exhibition-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-explore {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--brand-red), #ff4444);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 25px;
    align-self: flex-start;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    color: white;
}

.btn-explore::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: 0.5s;
}

.btn-explore:hover::before {
    left: 100%;
}

.load-more-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
}

/* Modal Customization */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(45deg, var(--brand-red), #ff4444);
    color: white;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    color: white;
    box-shadow: none;
    opacity: 1;
}

.modal-footer {
    border-top: none;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 0, 0, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 50%;
}

@media (max-width: 991px) {
    .exhibition-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobile Portrait Video Modal */
.portrait-video-modal .modal-dialog {
    max-width: 400px;
    margin: 1.75rem auto;
}

.portrait-video-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.portrait-video-modal .modal-body {
    padding: 0;
}

.portrait-video-modal video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .exhibition-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .play-reel-btn,
    .view-invitation-btn,
    .view-gallery-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        opacity: 1;
        transform: scale(1);
    }
    
    .exhibition-status {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .exhibition-title {
        font-size: 1.1rem;
    }
    
    .portrait-video-container {
        padding-top: 177.78%; /* Keep aspect ratio on mobile */
    }
    
    .exhibition-overlay {
        opacity: 1;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    }
}