/* Profilm Custom Global Styles - Centralized Fixes */

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

body {
    font-family: 'Inter', sans-serif !important;
    margin: 0;
    padding-top: 100px;
    /* Fixed header compensation */
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4,
h5,
h6,
.elementor-heading-title {
    font-family: 'Inter', sans-serif !important;
    /* Removed forced font-weight and color to restore original layout hierarchy */
}

a {
    transition: 0.3s;
    text-decoration: none;
    /* font-family removed to avoid breaking icons */
}

/* 2. Premium Header Styling */
.jupiterx-header {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95) !important;
    /* Slightly darker/more opaque */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 100px;
    /* Increased from 80px to match original 'tall' feel */
}

.elementor-20 .elementor-section.pro-nav-bg {
    min-height: 100px !important;
    padding: 0 !important;
    background: transparent !important;
}

.raven-site-logo img {
    max-height: 55px !important;
    /* Increased from 40px */
    width: auto;
    margin-top: 0;
}

/* Navigation Links */
.raven-nav-menu a.raven-link-item {
    color: #FFFFFF !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 15px;
    /* Slightly larger */
    letter-spacing: 0.5px;
    padding: 10px 20px;
}

/* ... (Skipping untouched sections) ... */

/* 4 Equal Columns Logic */
.footer-col {
    flex: 1;
    min-width: 200px;
    text-align: left;
    /* CHANGED from right to left for better readability standard */
    padding-left: 20px;
    /* Add breathing room */
}

.footer-col-logo {
    text-align: left;
    flex: 1.2;
    padding-left: 0;
}

.footer-col h4 {
    color: #FFFFFF !important;
    font-size: 16px !important;
    margin-bottom: 15px !important;
    font-weight: 800 !important;
    text-transform: capitalize;
}

.footer-col a {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .profilm-footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col,
    .footer-col-logo {
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
    }
}


/* Green Download Buttons */
.btn-download {
    display: inline-block;
    background-color: #00AF62;
    color: #FFFFFF !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 15px;
    text-align: center;
}

.btn-download:hover {
    background-color: #007f46;
    text-decoration: none;
}

/* Product Cards - Dark Mode */
.product-card {
    background-color: #111111 !important;
    /* Dark gray card background */
    color: #FFFFFF !important;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.product-card h3,
.product-card h4,
.product-card li,
.product-card a {
    color: #FFFFFF !important;
}

.product-card a:hover {
    color: #00AF62 !important;
}

/* 7. Footer Specificity Boost */
html body footer.custom-profilm-footer {
    background-color: #00AF62 !important;
}

/* 8. PPF Header Fix */
.hero-ppf {
    margin-top: 40px !important;
    /* Extra clearance for header */
}