/* ============================================================
   SIGNS PAGE — UNIQUE GREEN COMPONENTS
   (Global layout inherited from styling.css)
============================================================ */

/* Green Benefits Box */
.benefits-box {
    background: #0d0d0d;
    padding: 25px 20px;
    margin-bottom: 30px;
    border-left: 4px solid #22c55e;
    border-radius: 6px;
}
.benefits-box h2 { color: #22c55e; }

/* ============================================================
   SIGNAGE TABLE — FULL WIDTH + BORDERED STYLE
============================================================ */
.sign-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
    color: var(--text);
    text-align: center;
    background: rgba(255,255,255,0.03);
}

.sign-table th,
.sign-table td {
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 8px;
}

.sign-table thead th {
    background: #22c55e;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
}

.sign-series td {
    background: #ffad00;
    color: #000;
    font-weight: 700;
    border-color: rgba(0,0,0,0.3) !important;
}

.sign-table td:first-child { font-weight: 700; }

.sign-table tr:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

.sign-series {
    background: #ffad00 !important;
    font-weight: bold;
}

/* Badge */
.badge .dot { background: #22c55e; }

/* ============================================================
   MOCKUP ELEMENTS
============================================================ */
.mockup-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.75rem;
}

/* CTA button */
.btn-main {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 0 12px rgba(255,0,0,0.6);
}

/* ============================================================
   GRID LAYOUTS
============================================================ */
.cols-2,
.cols-3 {
    display: grid;
    gap: 20px;
    margin: 25px 0 35px;
}

.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 900px) {
    .cols-2,
    .cols-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   HEADINGS
============================================================ */
.signs-section-title {
    text-align: center;
    margin: 40px 0 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.signs-section-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.5;
}

/* GLOBAL HEADING COLOR – SIGNS PAGE ONLY */
.signs h1,
.signs h2 {
    color: #22c55e !important;
}

/* ============================================================
   FIXED FOOTER — CENTERED PROPERLY
============================================================ */
.site-footer {
    width: 100%;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,0,0,0.4);
    text-align: center;

    /* Flex ensures perfect centering in all browsers */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    color: var(--muted);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

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

.sep {
    color: var(--accent-soft);
}

/* ============================================================
   CARD STYLE FOR SIGNAGE BOXES
   (Rivet-Free, Property Owners, etc.)
============================================================ */
.signs .card {
    background: var(--card);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

/* ============================================================
   GREEN GLOW BUTTON – SIGNAGE THEME
============================================================ */
.btn-green-glow {
    display: inline-block;
    background: #22c55e;
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;

    /* Glow */
    box-shadow:
        0 0 10px rgba(34, 197, 94, 0.7),
        0 0 22px rgba(34, 197, 94, 0.5),
        0 0 35px rgba(34, 197, 94, 0.3);
    
    transition: 0.25s ease-in-out;
}

.btn-green-glow:hover {
    background: #33dd88;
    box-shadow:
        0 0 14px rgba(34, 197, 94, 0.9),
        0 0 30px rgba(34, 197, 94, 0.7),
        0 0 45px rgba(34, 197, 94, 0.5);
    transform: scale(1.04);
}

.mockup {
    display: flex;
    align-items: flex-start;
    gap: 20px; /* space between image and content */
}

.mockup-image {
    width: 40%;
    height: auto;
}

.mockup-content {
    flex: 1; /* text takes remaining space */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-header span {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
}

.mockup-frame {
    border: 1px solid #333;
    padding: 10px;
    background: #111;
}

.mockup-inner-sign span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.mockup-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mockup-pill {
    background: #22c55e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .mockup {
        flex-direction: column; /* stack everything */
        align-items: center;
        text-align: center;
    }

    .mockup-image {
        width: 80%; /* larger for mobile */
    }

    .mockup-badges {
        justify-content: center; /* center pill boxes */
        margin-top: 10px;
    }
}

.button-row {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Red neon Request Quote button */
.btn-red-glow {
    background: var(--accent);
    color: #000;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 12px rgba(255,0,0,0.7);
    transition: 0.25s ease;
}

.btn-red-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,0,0,1);
}
