:root {
    --primary-color: #497e76;
    --secondary-color: #faf9f6;
    --accent-color: #0d6efd;
    --text-dark: #141414;
    --text-muted: #8f8f8f;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a8f87 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #5a8f87);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.screenshot-placeholder {
    background: var(--secondary-color);
    border: 2px dashed #ddd;
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

    .screenshot-placeholder:hover {
        border-color: var(--primary-color);
    }

.btn-warning-custom {
    background: #ffc107;
    border: none;
    color: #000;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

    .btn-warning-custom:hover {
        background: #ffb300;
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    }

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: transform 0.3s;
}

    .pricing-card.featured {
        border: 2px solid var(--primary-color);
        transform: scale(1.05);
    }

    .pricing-card:hover {
        transform: translateY(-10px);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

.badge-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.section-padding {
    padding: 80px 0;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

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

.newsletter-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-control-custom {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    transition: border-color 0.3s;
}

    .form-control-custom:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(73, 126, 118, 0.25);
    }

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s;
}

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

.menu-link {
    transition: background 0.2s, color 0.2s;
    border-radius: 6px;
    margin-bottom: 2px;
}

    .menu-link:hover,
    .menu-link.active {
        background: var(--primary-color);
        color: #fff !important;
    }

.navbar-nav {
    flex-direction: row;
    gap: 0.5rem;
}

    .navbar-nav .nav-item {
        width: auto !important;
    }

    .navbar-nav .nav-link,
    .navbar-nav .btn {
        text-align: left !important;
        width: auto !important;
        margin-bottom: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }

        .navbar-nav .nav-link,
        .navbar-nav .btn {
            width: 100% !important;
            text-align: center !important;
            margin-bottom: 6px;
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }
}

/* Footer contact link style */
footer .text-muted {
    color: #c6c6c6 !important;
    text-decoration: none;
}

footer a[href^="tel"] {
    color: #fff !important;
    text-decoration: none !important;
}

footer a[href^="mailto"] {
    color: #fff !important;
    text-decoration: none !important;
}

    footer a[href^="tel"]:hover,
    footer a[href^="mailto"]:hover {
        text-decoration: underline !important;
    }

@media (min-width: 992px) {
    .text-lg-end {
        text-align: right !important;
    }

    .footer-flex-lg-end {
        justify-content: flex-end !important;
        align-items: center !important;
    }
}
