/* ========================================
   Common styles — PromBarrier
   ======================================== */

/* --- Global / Base --- */

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

body {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    color: var(--dark-blue);
    line-height: 1.5;
}

h1, h2, h3 {
    font-family: 'Google Sans 17pt', 'Google Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
}

h2 {
}

a {
    color: var(--dark-yellow);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

a:hover {
    color: var(--dark-yellow);

}

/* --- Upload Box --- */

.upload-box {
    flex: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border: 2px dashed var(--grey);
    border-radius: 8px;
    background: rgba(var(--dark-blue-rgb), 0.03);
    transition: background 0.2s;
}

.upload-box:hover {
    background: rgba(var(--dark-blue-rgb), 0.06);
}

.upload-box__icon {
    font-size: 2.5rem;
    color: var(--black);
    flex-shrink: 0;
    line-height: 1;
}

.upload-box__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.upload-box__text {
    font-weight: 600;
    font-size: 1rem;
    color: var(--black);
}

.upload-box__text-sm {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--black);
    opacity: 0.6;
    max-width: 200px;
    line-height: 1.3;
}

/* --- Upload Area --- */

.upload-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 2px dashed var(--grey);
    border-radius: 10px;
    padding: 2rem;
    color: var(--black);
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: background 0.2s;
}

.upload-area > div {
    text-align: left;
}

.upload-area:hover {
    background: rgba(var(--dark-blue-rgb), 0.03);
}

.upload-area__icon {
    font-size: 2rem;
    color: var(--dark-blue);
}

/* --- Breadcrumbs --- */

.breadcrumbs {
    background-color: var(--lighter-grey);
    padding: 0.75rem 0;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item a {
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
}

.breadcrumb-item a:hover {
    color: var(--black);
}

.breadcrumb-item.active {
    color: var(--black);
    font-weight: 600;
    font-size: 0.85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--grey);
}

/* --- Navbar --- */

.navbar {
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    color: var(--yellow) !important;
}

@media (max-width: 1199.98px) {
    #navbarMain .navbar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 0.5rem 1.5rem;
    }

    #navbarMain .navbar-nav .nav-item {
        width: auto;
    }
}

@media (max-width: 575.98px) {
    #navbarMain .navbar-nav {
        gap: 0.15rem 0.5rem;
    }
}

.navbar-extra {
}

.navbar-extra .phone {
    font-weight: 900;
}

.navbar-extra .phone-icon {
    display: inline-flex;
    align-items: center;
    color: var(--black);
    font-size: 1.3rem;
    line-height: 1;
    border-bottom: none;
}

.navbar-extra .phone-icon:hover {
    color: var(--dark-yellow);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header__logo img {
    width: 60px;
    flex-shrink: 0;
}

.header__logo-text {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--dark-grey);
}

.header__logo-name {
    font-family: 'Google Sans 17pt', 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
}

.header__logo-name-yellow {
    color: var(--yellow);
}

/* --- Footer --- */

/* --- Specs Group --- */

.specs-group {
    flex: 1;
    min-width: 400px;
    max-width: 700px;
    background: var(--lighter-grey);
    border-radius: 10px;
    padding: 1.5rem 0;
}
.specs-group__wrapper {
    padding: 0 1.5rem;
}
.specs-group__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--yellow);
}

.specs-group__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0;
}

.specs-group__item + .specs-group__item {
    border-top: 1px solid var(--light-grey);
}

.specs-group__label {
    font-size: 0.85rem;
    color: var(--dark-grey);
}

.specs-group__value {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    text-align: end;
}

.specs-group a,
.contact-card a,
.info-card a {
    color: var(--black);
    font-weight: 600;
    border-bottom: none;
}

.specs-group a:hover,
.contact-card a:hover,
.info-card a:hover {
    color: var(--dark-yellow);
}

/* --- Footer --- */

/* --- Submit Button Wrapper --- */

.submit-btn-wrap {
    position: relative;
}
.submit-btn-wrap a {
    padding: 1rem
}

.submit-btn-wrap .btn[disabled] {
    pointer-events: none;
}

/* --- Footer --- */

.footer {
    font-weight: 400;
    padding: 3rem 0 1.5rem;
    background-color: var(--dark-blue);
    color: var(--white);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__logo img {
    width: 50px;
    flex-shrink: 0;
}

.footer__logo-text {
    font-size: 0.7rem;
    line-height: 1.3;
    color: rgba(var(--white-rgb), 0.6);
}

.footer__logo-name {
    font-family: 'Google Sans 17pt', 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.footer__about {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(var(--white-rgb), 0.6);
    margin-bottom: 0;
}

.footer__title {
    font-family: 'Google Sans 17pt', 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__nav a {
    color: rgba(var(--white-rgb), 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: var(--yellow);
}

.footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(var(--white-rgb), 0.6);
}

.footer__contact-list i {
    font-size: 1rem;
    color: var(--yellow);
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.footer__contact-list a {
    color: rgba(var(--white-rgb), 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__contact-list a:hover {
    color: var(--yellow);
}

.footer__divider {
    border-color: rgba(var(--white-rgb), 0.1);
    margin: 1.5rem 0;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(var(--white-rgb), 0.4);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer__bottom a {
    color: rgba(var(--white-rgb), 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__bottom a:hover {
    color: var(--yellow);
}

/* --- Info CTA --- */

.info-cta {
    padding: 2rem 0;
}

.info-cta__inner {
    background-color: var(--dark-blue);
    border-radius: 10px;
    padding: 2.5rem;
    color: var(--white);
}

.info-cta__inner h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 0.75rem;
}

.info-cta__inner p {
    font-size: 0.95rem;
    opacity: 0.75;
    margin-bottom: 0;
    line-height: 1.6;
}

.info-cta__inner .btn {
    font-weight: 600;
    padding: 0.85rem 2rem;
}

@media (max-width: 991.98px) {
    .info-cta__inner .row {
        row-gap: 1.5rem;
    }

    .info-cta__inner .justify-content-lg-end {
        justify-content: flex-start !important;
    }
}

@media (max-width: 767.98px) {
    .info-cta__inner {
        padding: 1.5rem;
    }
}
