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

:root {
    --primary-color: #dc3545;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --accent-bg: #fdf2f3;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin-left: 1rem;
    position: relative;
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-bg);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--dark-color);
    font-weight: 500;
}

.service-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    background-color: var(--accent-bg);
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #bb2d3b;
    border-color: #bb2d3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.btn-outline-secondary {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    border-width: 2px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s ease;
}

.video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
    border-radius: 2px;
}

/* Facts Section */
.facts-section {
    background-color: #fff;
}

.fact-item {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.fact-item i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.fact-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
}

/* Quality Section */
.quality-section {
    background-color: #f8f9fa;
}

.card-download {
    border: none;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.card-download .card-body {
    padding: 1.5rem;
}

.card-download i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Carousel */
.carousel-section {
    padding: 4rem 0;
}

.carousel-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding-bottom: 4rem;
}

.contact-card {
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #edf2f7;
}

.contact-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-card .card-body {
    padding: 2rem;
}

.contact-card .card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card .card-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color) !important;
    margin-bottom: 1.5rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f3f5;
    transition: all 0.2s ease;
}

.contact-links a:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.contact-links a:hover img {
    filter: brightness(0) invert(1);
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 3rem 0;
    border-top: 1px solid #e9ecef;
}

footer a {
    color: var(--secondary-color);
    font-weight: 500;
}

footer a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-section {
        padding: 6rem 0 4rem;
        text-align: center;
    }
    .hero-lead {
        margin: 0 auto 2rem;
    }
    .hero-services {
        align-items: center;
    }
    .hero-cta {
        justify-content: center;
        display: flex;
    }
    .video-wrapper {
        margin-top: 3rem;
        transform: none;
    }
    .video-wrapper:hover {
        transform: none;
    }
}
