/* Avenir Font Family */
@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNext-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNext-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNext-DemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next';
    src: url('../fonts/AvenirNextLTPro-Demi.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #023183;
    --accent-color: #f97046;
    --text-dark: #000000;
}

body {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

h1 {
    font-weight: 700;
}

.hero-section {
    background: linear-gradient(135deg, #000000 0%, #023183 100%);
    color: white;
    padding: 1rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.section-card {
    padding: 5rem 0;
}

.section-card.dark-bg {
    background-color: var(--primary-color);
    color: white;
}

.section-card.light-bg {
    background-color: #ffffff;
}

.card-feature {
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(249, 112, 70, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
}

.accent-text {
    color: var(--accent-color);
    font-weight: bold;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Large images in sections */
.section-card .img-responsive {
    max-width: 100%;
    width: 100%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bullet-list {
    list-style: none;
    padding-left: 0;
}

.bullet-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        min-height: 50vh;
    }

    .section-card {
        padding: 3rem 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    h1.display-3 {
        font-size: 2.5rem;
    }

    h2.display-4 {
        font-size: 2rem;
    }
}

/* Contact Button */
#contact-float-btn:hover {
    background-color: white !important;
    color: #F97046 !important;
    border: 2px solid #F97046 !important;
}

#contact-float-btn:hover i {
    color: #F97046 !important;
}

/* Honeypot field - hidden from humans but visible to bots */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
