/* *****************************************************
 * Custom Stylesheet
 *
 * Any custom styling you want to apply should be defined here.
 ***************************************************** */

/*
 * Custom CSS for Nexus Theme
 *
 * This file allows you to customize the theme colors and styles
 * for the entire Nexus template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* Define custom palette with brand colors */

    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */

    --primary: var(--neutral-900);

    /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);

    /* var(--primary-700) */
    --primary-accented: var(--neutral-700);

    /* var(--primary-800) */
    /* Secondary colors */

    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */

    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

.pricing-hero {
    background: linear-gradient(135deg, #1d3557 0%, #274c77 100%);
    color: #fff;
    padding: 50px 30px;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pricing-hero h1 {
    margin-top: 0;
    font-size: 36px;
    font-weight: 700;
}

.pricing-hero p {
    font-size: 16px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
}

.pricing-panel {
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background: #fff;
}

.pricing-panel .panel-heading {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-panel .panel-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.pricing-panel .panel-subtitle {
    margin-top: 6px;
    font-size: 13px;
    opacity: 0.95;
}

.pricing-panel .panel-body {
    padding: 22px 20px;
}

.price-value {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #1d3557;
}

.price-unit {
    font-size: 14px;
    color: #777;
    margin-bottom: 14px;
    line-height: 1.5;
    white-space: nowrap;
}

.price-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.panel-standard .panel-heading {
    background: #2a9d8f;
    color: #fff;
}

.panel-posting .panel-heading {
    background: #6c757d;
    color: #fff;
}

.panel-rush .panel-heading {
    background: #f4a261;
    color: #fff;
}

.panel-sameday .panel-heading {
    background: #e63946;
    color: #fff;
}

.pricing-section {
    margin-bottom: 35px;
}

.pricing-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    color: #1d3557;
}

.pricing-section p.section-intro {
    color: #666;
    margin-bottom: 20px;
}

.included-box, .addons-box, .services-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: #444;
}

.check-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background: url('/assets/img/statusok.gif') no-repeat center center;
    background-size: 16px 16px;
}

.pricing-table {
    margin-bottom: 0;
}

.pricing-table > thead > tr > th {
    background: #f8f9fa;
    color: #1d3557;
    border-bottom: 2px solid #ddd;
    font-weight: 700;
}

.pricing-table td, .pricing-table th {
    vertical-align: top !important;
}

.info-chip {
    display: inline-block;
    margin-top: 8px;
    margin-right: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef6ff;
    border: 1px solid #cfe3fb;
    color: #1d5fa7;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.info-chip:hover, .info-chip:focus {
    background: #dfeeff;
    border-color: #b8d6f7;
    color: #154c87;
    text-decoration: none !important;
}

.info-chip i {
    margin-right: 6px;
}

.unit-link {
    font-weight: 600;
    color: #1d5fa7;
    text-decoration: none !important;
    border-bottom: 1px dotted #1d5fa7;
}

.unit-link:hover, .unit-link:focus {
    color: #154c87;
    text-decoration: none !important;
}

.item-name {
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 2px;
}

.item-subtext {
    margin-top: 4px;
    color: #666;
    font-size: 13px;
}

.inline-muted-link {
    font-size: 12px;
    color: #666 !important;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
}

.inline-muted-link:hover, .inline-muted-link:focus {
    color: #444 !important;
    text-decoration: underline;
}

.cta-box {
    background: #f8fbff;
    border: 1px solid #d8e6f3;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    margin-top: 35px;
}

.cta-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1d3557;
    font-weight: 700;
}

.cta-box p {
    color: #666;
    margin-bottom: 20px;
}

.modal-body ul {
    padding-left: 20px;
}

.small-muted {
    color: #777;
    font-size: 13px;
}

@media (max-width: 991px) {
    .price-value {
        font-size: 30px;
    }

    .price-unit {
        white-space: normal;
    }
}

#footer.custom-site-footer {
    background: linear-gradient(180deg, #162234 0%, #0f1724 100%);
    color: #d8e2ef;
    padding: 0;
    margin-top: 3rem;
}

#footer.custom-site-footer a {
    color: #ffffff;
    transition: opacity 0.2s ease, color 0.2s ease;
}

#footer.custom-site-footer a:hover {
    color: #ffffff;
    opacity: 0.85;
    text-decoration: none;
}

#footer.custom-site-footer .footer-heading {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

#footer.custom-site-footer .footer-subheading {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#footer.custom-site-footer .footer-lead, #footer.custom-site-footer .footer-meta, #footer.custom-site-footer .footer-bottom, #footer.custom-site-footer .trust-caption {
    color: rgba(216, 226, 239, 0.88);
}

#footer.custom-site-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    line-height: 1.55;
}

#footer.custom-site-footer .footer-contact-item i {
    width: 1.25rem;
    margin-top: 0.2rem;
    margin-right: 0.75rem;
    color: #9fc3ff;
}

#footer.custom-site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer.custom-site-footer .footer-links li {
    margin-bottom: 0.7rem;
}

#footer.custom-site-footer .footer-actions .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 999px;
    padding-left: 1rem;
    padding-right: 1rem;
}

#footer.custom-site-footer .footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.9rem;
}

#footer.custom-site-footer .trust-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 112px;
    text-align: center;
    padding: 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

#footer.custom-site-footer .trust-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: 0.55rem;
}

#footer.custom-site-footer .trust-logo-wrap img {
    max-height: 42px;
    max-width: 100%;
    width: auto;
    display: block;
}

#footer.custom-site-footer .trust-fallback {
    display: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

#footer.custom-site-footer .trust-logo-wrap.is-fallback .trust-fallback {
    display: block;
}

#footer.custom-site-footer .trust-logo-wrap.is-fallback img {
    display: none;
}

#footer.custom-site-footer .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer.custom-site-footer .footer-utility .list-inline {
    margin-bottom: 0;
}

#footer.custom-site-footer .footer-utility .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

#footer.custom-site-footer .footer-utility .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
    #footer.custom-site-footer .footer-utility {
        text-align: center;
    }

    #footer.custom-site-footer .footer-utility .float-lg-right {
        float: none !important;
        margin-top: 1rem;
    }
}