:root {
    --massadev-orange: #f5a623;
    --abcweb-green: #2e7d32;
    --abcweb-dark: #1a1a2e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar.is-white {
    border-bottom: 3px solid var(--massadev-orange);
    min-height: 100px;
}

.navbar.is-white .navbar-brand {
    min-height: 100px;
}

.navbar.is-white .navbar-item {
    min-height: 100px;
}

.navbar-item img {
    max-height: none !important;
}

.navbar-item.is-active {
    color: var(--massadev-orange) !important;
    font-weight: 600;
}

.navbar-item:hover {
    color: var(--massadev-orange) !important;
    background-color: transparent !important;
}

.navbar-burger span {
    background-color: var(--abcweb-dark) !important;
}

.hero-main {
    background: linear-gradient(135deg, var(--abcweb-dark) 0%, #16213e 50%, #0f3460 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-main .title,
.hero-main .subtitle {
    color: #fff;
}

.hero-main .title span {
    color: var(--massadev-orange);
}

.section-title-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--massadev-orange);
    border-radius: 2px;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--massadev-orange);
    height: 100%;
}

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

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--massadev-orange);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.portfolio-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.portfolio-card .card-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-card .card-image.farm {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
}

.portfolio-card .card-image.boutique {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.portfolio-card .card-image.supply {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.portfolio-card .card-image.asso {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.portfolio-card .card-image span {
    font-size: 4rem;
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.is-featured {
    border: 3px solid var(--massadev-orange);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--massadev-orange);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--abcweb-dark);
}

.price-currency {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.faq-accordion .card {
    margin-bottom: 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.faq-accordion .card-header {
    cursor: pointer;
    background-color: #f8f9fa;
    transition: background-color 0.2s;
}

.faq-accordion .card-header:hover {
    background-color: #fff3e0;
}

.faq-accordion .card-header-title {
    color: var(--abcweb-dark);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.is-open {
    transform: rotate(180deg);
}

.cta-section {
    background: linear-gradient(135deg, var(--massadev-orange) 0%, #e67e22 100%);
}

.footer a:hover {
    color: var(--massadev-orange) !important;
}

.tag.is-ci-flag {
    background: linear-gradient(to right, #f77f00 33%, #ffffff 33%, #ffffff 66%, #009a44 66%);
    color: transparent;
    width: 30px;
    height: 20px;
    padding: 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hero-main {
        min-height: 60vh;
    }
    .price-amount {
        font-size: 2rem;
    }
}

.contact-info-box {
    border-left: 4px solid var(--massadev-orange);
    transition: box-shadow 0.2s ease;
}

.contact-info-box:hover {
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.15);
}
