/* ==========================================================================
   1. BASE & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f9fafb;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.t-page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.015em;
}

/* ==========================================================================
   2. LAYOUT & UTILITIES
   ========================================================================== */
  

   .demo{
    font-size: 250%;
    font-weight: bolder;
    color: #ea580c;
    padding: 5%;
    margin: auto;
   }
.l-container {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.l-grid {
    display: grid;
    gap: 1.5rem; /* gap-6 */
    grid-template-columns: 1fr;
}

.u-py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.u-px-4  { padding-left: 1rem; padding-right: 1rem; }
.u-text-muted { color: #9ca3af; }

.u-link-back {
    display: inline-flex;
    align-items: center;
    color: #2563eb; /* text-blue-600 */
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.u-link-back:hover {
    text-decoration: underline;
}

/* ==========================================================================
   3. COMPONENTS - HERO
   ========================================================================== */

    /* BLOCK: Cookie Notice */
.c-cookie-bar {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none; /* Hidden by default, shown via JS */
}

@media (min-width: 768px) {
    .c-cookie-bar {
        max-width: 400px;
        right: auto;
    }
}

.c-cookie-bar__text {
    font-size: 0.8125rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.c-cookie-bar__actions {
    display: flex;
    gap: 0.75rem;
}

/* Reusing your orange button style */
.c-cookie-bar__btn {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    border: none;
}

.c-cookie-bar__btn--accept {
    background: #ea580c;
    color: #ffffff;
}

.c-cookie-bar__btn--decline {
    background: #f1f5f9;
    color: #64748b;
}

/* BLOCK: Cookie Trigger Button */
.c-cookie-trigger {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem; /* Pin to the right */
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10000; /* Stays above everything */
}

.c-cookie-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.c-cookie-trigger__img {
    width: 24px;
    height: 24px;
}

/* Modifier: Ensure Cookie Bar is also right-aligned to match icon */
@media (min-width: 768px) {
    .c-cookie-bar {
        left: auto; /* Remove left pin */
        right: 1.5rem; /* Match the icon's right position */
  bottom: 5rem; /* Sit above the icon */
    }
}

.c-hero {
    background-color: #0f172a;
    padding: 3rem 1rem;
    border-bottom: 4px solid #ea580c;
    text-align: center;
}

.c-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.c-hero__subtitle {
    margin-top: 0.5rem;
    color: #fb923c;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .c-hero__title { font-size: 3rem; }
}

/* BLOCK: Business Details */
.c-business-details {
    background-color: #ffffff;
    min-height: 100vh;
    border-top: 8px solid #ea580c;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .c-business-details {
        min-height: 0;
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
        border-radius: 0.5rem;
    }
}

/* ELEMENT: Inner Padding */
.c-business-details__inner {
    padding: 1.5rem;
}



/* ELEMENT: Title */
.c-business-details__title {
    font-size: 1.5rem; /* 24px */
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .c-business-details__title {
        font-size: 2.25rem; /* 36px */
    }
}

/* COMPONENT: Back Link */
.c-back-link {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.c-back-link:hover {
    text-decoration: underline;
}

.c-back-link__icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

/* ==========================================================================
   4. COMPONENTS - BUSINESS CARD
   ========================================================================== */
.c-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s ease;
}

.c-card:hover { border-color: #ea580c; }

.c-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.c-card__title {
    margin: 0;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 800;
    transition: color 0.2s ease;
}

.c-card:hover .c-card__title { color: #ea580c; }

.c-card__category {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.c-card__button {
    background-color: #1e293b;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.c-card__button:hover { background-color: #ea580c; }

.c-card__badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}


/* ELEMENT: Detail Card Specifics */
.c-business-card {
    background-color: #ffffff;
    border-top: 8px solid #ea580c; /* The Industrial Orange stripe */
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.c-business-card__content {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .c-business-card__content {
        padding: 3rem; /* More "VIP" padding for desktop */
    }
}

/* BLOCK: Vetted Badge */
.c-vetted-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 0;
    border-top: 1px solid #f3f4f6;
}

.c-vetted-badge__icon {
    width: 1rem;
    height: 1rem;
    color: #059669; /* emerald-600 */
}

.c-vetted-badge__text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #047857; /* emerald-700 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .c-vetted-badge__text { font-size: 0.875rem; }
}

/* COMPONENT: Section Label */
.c-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ea580c; /* orange-600 */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* BLOCK: Data List (The Spec/Compliance Rows) */
.c-data-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.c-data-list__item {
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #e5e7eb;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .c-data-list__item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.c-data-list__label {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .c-data-list__label { margin-bottom: 0; }
}

.c-data-list__value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
}
/* BLOCK: Trust Bar */
.c-trust-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* ELEMENT: Years Counter */
.c-trust-bar__years {
    font-size: 1.25rem; /* 20px */
    font-weight: 900;
    color: #0f172a; /* slate-900 */
    line-height: 1;
}

/* ELEMENT: Label */
.c-trust-bar__label {
    font-size: 10px;
    font-weight: 700;
    color: #ea580c; /* orange-600 */
    text-transform: uppercase;
    letter-spacing: 0.3em;
    border-left: 2px solid #e5e7eb;
    padding-left: 1rem;
}


/* ==========================================================================
   5. COMPONENTS - BADGES
   ========================================================================== */
.c-badge {
    padding: 2px 8px;
    border: 1px solid;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}


/* BLOCK: Contact Info Card */
.c-contact-info {
    background-color: #f8fafc; /* slate-50 */
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0; /* slate-200 */
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .c-contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

/* ELEMENT: Row/Item */
.c-contact-info__item {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ELEMENT: Label (Fixed width for alignment) */
.c-contact-info__label {
    width: 80px; /* equivalent to w-20 */
    flex-shrink: 0;
    color: #9ca3af;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    padding-top: 2px;
}

/* ELEMENT: Link Specifics */
.c-contact-info__link {
    color: #2563eb;
    text-decoration: none;
}

.c-contact-info__link:hover {
    text-decoration: underline;
}

.c-contact-info__address {
    color: #475569; /* slate-600 */
    font-weight: 500;
}




.c-badge--blue  { background: #dbeafe; color: #1d4ed8; border-color: #bfdbfe; }
.c-badge--green { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.c-badge--gray  { background: #f3f4f6; color: #4b5563; border-color: #d1d5db; }

/* ==========================================================================
   6. COMPONENTS - FOOTER
   ========================================================================== */
.c-footer {
    margin-top: auto;
    padding: 2.5rem 1rem;
    border-top: 1px solid #f3f4f6;
    color: #9ca3af;
    font-size: 0.875rem;
    text-align: center;
}

.c-footer__link {
    color: #6b7280;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-footer__link:hover { color: #ea580c; }

.c-footer__action-link {
    color: inherit;
    text-decoration: underline;
}

.c-footer__action-link:hover { color: #374151; }

/* ==========================================================================
   7. COMPONENTS - RFQ FORM
   ========================================================================== */
.c-rfq-form {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 2px dashed #e5e7eb;
    border-radius: 0.75rem;
}

@media (min-width: 768px) {
    .c-rfq-form { padding: 2.5rem; }
}

.c-rfq-form__title {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.c-rfq-form__icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: #ea580c;
}

/* Form Layout Elements */
.c-rfq-form__group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .c-rfq-form__group--two-col { grid-template-columns: 1fr 1fr; }
    .c-rfq-form__group--three-col { grid-template-columns: 1fr 1fr 1fr; }
}

/* The Standard Input Style */
.c-rfq-form__input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
    transition: ring 0.2s;
}

.c-rfq-form__input:focus {
    border-color: #ea580c;
    box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.2);
}

.c-rfq-form__textarea {
    min-height: 8rem;
    resize: vertical;
}

/* Checkbox Wrapper */
.c-rfq-form__checkbox-wrapper {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
}

.c-rfq-form__checkbox {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
    accent-color: #ea580c;
}
