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

:root {
    --primary-color: #991B1B; /* Dark Red */
    --secondary-color: #1F2937; /* Dark Gray */
    --light-bg: #F3F4F6;
    --text-color: #333;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: var(--white);
    padding: 1rem 0;
}

.navbar-brand {
    background: url('../img/fulllogo_transparent_nobuffer.png') no-repeat center left;
    background-size: contain;
    height: 60px;
    width: 200px;
    display: block;
    text-indent: -9999px;
    color: transparent !important;
}

.navbar-brand i {
    display: none;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
    min-width: 250px;
}

.dropdown-menu-dark {
    background-color: var(--secondary-color);
}

.dropdown-menu-dark .dropdown-item {
    color: #cbd5e1;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s ease;
}

.dropdown-menu-dark .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-menu-dark .dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.25rem 0.25rem;
}

.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 0.5rem 0;
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.15em;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #7f1717; /* Darker red */
    border-color: #7f1717;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Fallback image */
    background-size: cover;
    background-position: center;
    height: 80vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Headings */
.section-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
}

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

.product-card img {
    height: 250px;
    object-fit: cover;
}

.card-title {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #cbd5e1;
    padding: 60px 0 20px;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-info li {
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Custom Utilities */
.text-primary-custom {
    color: var(--primary-color);
}

.bg-light-custom {
    background-color: var(--light-bg);
}

/* Pain Points Section */
.pain-points-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.pain-points-section::before {
    display: none; /* Remove gradient line if it clashes, or adapt it */
}

.pain-card {
    background: var(--white);
    border: none;
    border-radius: 8px; /* Assuming rounded corners */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.pain-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pain-card .card-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pain-card .icon-wrapper {
    height: 60px;
    width: 60px;
    background: rgba(153, 27, 27, 0.1); /* Light Primary Color */
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pain-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: rgba(153, 27, 27, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.element-animate {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
