/********** Pegado ERP — Custom Stylesheet **********/
/********** Colors: #EC9006 (Orange) | #003790 (Dark Blue) **********/

:root {
    --orange: #EC9006;
    --blue:   #003790;
    --blue-dark: #002a6e;
    --blue-light: #0047b8;
    --white:  #ffffff;
    --light:  #f5f7fa;
    --gray:   #6c757d;
    --text:   #2d3748;
}

* {
    font-family: 'Work Sans', 'Montserrat', sans-serif;
    line-height: 1.7;
    box-sizing: border-box;
}

body {
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/*** Scroll to top ***/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(236,144,6,0.4);
    transition: .3s;
}
.back-to-top:hover { background: var(--blue); }

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Buttons ***/
.btn {
    font-weight: 600;
    transition: .3s;
    border-radius: 4px;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}
.btn-primary:hover {
    background: #d4820a;
    border-color: #d4820a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(236,144,6,0.35);
}
.btn-outline-primary {
    border-color: var(--orange);
    color: var(--orange);
}
.btn-outline-primary:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}
.btn-blue {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
}
.btn-blue:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: white;
    transform: translateY(-1px);
}
.btn-outline-blue {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
}
.btn-outline-blue:hover {
    background: var(--blue);
    color: white;
}
.btn-lg { padding: 14px 36px; font-size: 1rem; }

/*** Navbar ***/
.navbar {
    background: var(--blue) !important;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 20px rgba(0,55,144,0.25);
}
.navbar-brand img {
    height: 42px;
    width: auto;
}
.navbar .navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 22px 14px !important;
    transition: color .3s;
    letter-spacing: 0.2px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--orange) !important;
}
.navbar .nav-item.dropdown:hover .dropdown-menu { display: block; }
.navbar .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 12px 0;
    margin-top: 0;
    min-width: 280px;
}
.dropdown-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    padding: 8px 20px 4px;
}
.navbar .dropdown-menu .dropdown-item {
    padding: 9px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar .dropdown-menu .dropdown-item i {
    color: var(--orange);
    width: 16px;
    font-size: 0.85rem;
}
.navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(236,144,6,0.08);
    color: var(--blue);
    padding-left: 24px;
}
.dropdown-divider { margin: 6px 0; }
.get-demo-btn {
    background: var(--orange);
    color: white !important;
    border-radius: 4px;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin-left: 10px;
    transition: .3s !important;
}
.get-demo-btn:hover {
    background: #d4820a !important;
    color: white !important;
    transform: translateY(-1px);
}
@media (max-width: 991px) {
    .navbar { padding: 0 4%; }
    .navbar .navbar-nav .nav-link { padding: 12px 0 !important; }
    .dropdown-menu { box-shadow: none; background: rgba(255,255,255,0.05); }
    .navbar .dropdown-menu .dropdown-item { color: rgba(255,255,255,0.85); }
    .navbar .dropdown-menu .dropdown-item:hover { color: var(--orange); background: transparent; }
    .dropdown-section-label { color: rgba(255,255,255,0.5); }
    .get-demo-btn { margin: 10px 0; display: inline-block; }
}

/*** Expanding Panel Hero ***/
:root {
    --panel-ease: cubic-bezier(0.77, 0, 0.175, 1);
    --panel-duration: 0.8s;
}

.hero-track {
    display: flex;
    width: 100%;
    height: 88vh;
    min-height: 520px;
    overflow: hidden;
    gap: 0;
}

.hero-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(0,0,0,0.3);
    transition: flex var(--panel-duration) var(--panel-ease);
    text-decoration: none;
}
.hero-panel:last-child { border-right: none; }

/* Background image */
.hero-panel__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.hero-panel__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.35) saturate(0.4);
    transform: scale(1.06);
    transition:
        filter var(--panel-duration) var(--panel-ease),
        transform var(--panel-duration) var(--panel-ease);
}

/* Blue gradient overlay */
.hero-panel__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,55,144,0.55) 0%,
        transparent 35%,
        transparent 55%,
        rgba(0,42,110,0.75) 100%
    );
    z-index: 2;
    transition: opacity var(--panel-duration) var(--panel-ease);
}

/* Vertical spine text */
.hero-panel__spine {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    z-index: 10;
    writing-mode: vertical-rl;
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
    opacity: 1;
    transition:
        opacity 0.4s var(--panel-ease),
        transform 0.4s var(--panel-ease);
    pointer-events: none;
}

/* Panel number top */
.hero-panel__num {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    transition: opacity var(--panel-duration) var(--panel-ease);
}

/* Orange accent bar on left of spine */
.hero-panel__accent {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 60px;
    background: var(--orange);
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.4s var(--panel-ease);
}

/* Details — revealed on hover */
.hero-panel__details {
    position: absolute;
    bottom: 52px;
    left: 48px;
    right: 48px;
    z-index: 10;
    opacity: 0;
    transform: translateX(-24px);
    transition:
        opacity 0.5s var(--panel-ease) 0.18s,
        transform 0.5s var(--panel-ease) 0.18s;
    pointer-events: none;
}
.hero-panel__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}
.hero-panel__tag::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--orange);
}
.hero-panel__title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    line-height: 0.95;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.hero-panel__desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 400px;
    margin-bottom: 28px;
}
.hero-panel__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--orange);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border-radius: 3px;
}
.hero-panel__btn:hover {
    background: #d4820a;
    color: white;
    transform: translateX(4px);
}
.hero-panel__btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.hero-panel__btn:hover svg { transform: translateX(4px); }

/* === HOVER ENGINE === */
.hero-track:hover > .hero-panel { flex: 1; }
.hero-track > .hero-panel:hover { flex: 7; }

.hero-panel:hover .hero-panel__bg img {
    filter: brightness(0.75) saturate(1);
    transform: scale(1);
}
.hero-panel:hover .hero-panel__spine {
    opacity: 0.12;
    transform: translateX(-50%) rotate(180deg) translateY(-24px);
}
.hero-panel:hover .hero-panel__accent { opacity: 0; }
.hero-panel:hover .hero-panel__details {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.hero-track:hover > .hero-panel .hero-panel__num { opacity: 0; }
.hero-panel:hover .hero-panel__num { opacity: 0.4 !important; }

/* Entrance animations */
@keyframes panelIn {
    from { opacity: 0; transform: scaleY(0.96); }
    to   { opacity: 1; transform: scaleY(1); }
}
.hero-panel {
    animation: panelIn 0.6s var(--panel-ease) both;
}
.hero-panel:nth-child(1) { animation-delay: 0.05s; }
.hero-panel:nth-child(2) { animation-delay: 0.15s; }
.hero-panel:nth-child(3) { animation-delay: 0.25s; }
.hero-panel:nth-child(4) { animation-delay: 0.35s; }

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .hero-track {
        flex-direction: column;
        height: auto;
    }
    .hero-panel {
        flex: none !important;
        height: 220px;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.3);
    }
    .hero-panel__details {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        left: 24px; right: 24px; bottom: 24px;
    }
    .hero-panel__title { font-size: 1.6rem; }
    .hero-panel__desc { display: none; }
    .hero-panel__spine { display: none; }
    .hero-panel__bg img { filter: brightness(0.5) saturate(0.6); }
}

/*** Stats Strip ***/
.stats-strip {
    background: var(--blue);
    padding: 0;
}
.stats-strip .stat-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background .3s;
}
.stats-strip .stat-item:last-child { border-right: none; }
.stats-strip .stat-item:hover { background: rgba(255,255,255,0.05); }
.stats-strip .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    display: block;
}
.stats-strip .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
    display: block;
}

/*** Section Titles ***/
.section-header { margin-bottom: 50px; }
.section-header .tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
    font-family: 'Josefin Sans', sans-serif;
}
.section-header p { color: var(--gray); font-size: 1rem; max-width: 600px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.section-divider {
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin-bottom: 16px;
    border-radius: 2px;
}
.section-header.center .section-divider { margin: 0 auto 16px; }

/*** Why Choose Section ***/
.why-section { background: var(--white); padding: 90px 0; }
.why-img-wrap { position: relative; }
.why-img-wrap img { border-radius: 8px; box-shadow: 0 20px 60px rgba(0,55,144,0.15); }
.why-img-wrap .badge-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(236,144,6,0.4);
}
.why-img-wrap .badge-stat strong { display: block; font-size: 1.8rem; font-weight: 700; }
.why-img-wrap .badge-stat span { font-size: 0.8rem; font-weight: 500; }
.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.why-feature .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(236,144,6,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-feature .icon-box i { color: var(--orange); font-size: 1.1rem; }
.why-feature h5 { font-size: 1rem; font-weight: 600; color: var(--blue); margin-bottom: 4px; }
.why-feature p { font-size: 0.88rem; color: var(--gray); margin: 0; }

/*** Offerings Tabs ***/
.offerings-section { background: var(--light); padding: 90px 0; }
.offerings-tabs { border: none; margin-bottom: 40px; gap: 8px; flex-wrap: wrap; }
.offerings-tabs .nav-link {
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 10px 28px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
    background: white;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.offerings-tabs .nav-link:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.offerings-tabs .nav-link.active {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    box-shadow: 0 4px 15px rgba(236,144,6,0.35);
}
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.module-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: .3s;
    position: relative;
}
.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,55,144,0.12);
}
.module-card .card-img {1
    height: 160px;
    overflow: hidden;
    position: relative;
}
.module-card .card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.module-card:hover .card-img img { transform: scale(1.05); }
.module-tag {
    position: absolute;
    top: 10px; left: 10px;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}
.tag-blue { background: var(--blue); }
.tag-orange { background: var(--orange); }
.module-card .card-body { padding: 16px; }
.module-card .card-body h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 6px;
    line-height: 1.4;
}
.module-card .card-body p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 1200px) { .module-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .module-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .module-grid { grid-template-columns: 1fr; } }

/*** Clients Strip ***/
.clients-section { background: white; padding: 60px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.clients-section .client-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 30px;
    text-align: center;
}
.client-logos { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.client-logos .client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: .3s;
    filter: grayscale(100%);
}
.client-logos .client-item:hover { opacity: 1; filter: grayscale(0%); }
.client-logos .client-item img { height: 48px; width: auto; object-fit: contain; }
.client-logos .client-item span { font-size: 0.75rem; font-weight: 600; color: var(--gray); text-align: center; }

/*** CTA Banner ***/
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(236,144,6,0.12);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 250px; height: 250px;
    background: rgba(236,144,6,0.08);
    border-radius: 50%;
}
.cta-section h2 { color: white; font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; font-family: 'Josefin Sans', sans-serif; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .cta-contact { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 20px; }
.cta-section .cta-contact a { color: var(--orange); text-decoration: none; font-weight: 600; }

/*** Product Feature Section (alternating) ***/
.feature-section { padding: 90px 0; }
.feature-section.bg-light-gray { background: var(--light); }
.feature-img img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,55,144,0.12);
    width: 100%;
}
.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.93rem;
    color: var(--text);
}
.feature-list li i { color: var(--orange); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/*** Module List (for product pages) ***/
.module-list-section { padding: 80px 0; }
.module-category-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(236,144,6,0.2);
}
.module-pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.module-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1.5px solid #e8ecf0;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: .25s;
    cursor: default;
}
.module-pill:hover {
    border-color: var(--orange);
    color: var(--blue);
    background: rgba(236,144,6,0.04);
    transform: translateY(-1px);
}
.module-pill i { color: var(--orange); font-size: 0.8rem; }

/*** Page Hero (inner pages) ***/
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: rgba(236,144,6,0.1);
    border-radius: 50%;
}
.page-hero .tag {
    display: inline-block;
    background: rgba(236,144,6,0.2);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 16px;
}
.page-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.2;
}
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 580px; margin-bottom: 32px; }
.page-hero .breadcrumb { background: transparent; padding: 0; margin: 0; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero .breadcrumb-item.active { color: var(--orange); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
@media (max-width: 768px) { .page-hero h1 { font-size: 1.9rem; } }

/*** Lifecycle / Flow Section ***/
.lifecycle-section { background: var(--light); padding: 80px 0; }
.lifecycle-steps { display: flex; flex-wrap: wrap; gap: 0; position: relative; }
.lifecycle-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 24px 12px;
    position: relative;
}
.lifecycle-step::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--orange);
}
.lifecycle-step:last-child::after { display: none; }
.lifecycle-step .step-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 10px;
}
.lifecycle-step h6 { font-size: 0.8rem; font-weight: 600; color: var(--blue); margin: 0; }
@media (max-width: 768px) {
    .lifecycle-steps { flex-direction: column; }
    .lifecycle-step::after { content: '↓'; right: auto; top: auto; bottom: -12px; left: 50%; transform: translateX(-50%); }
}

/*** Proof / Clients Cards ***/
.proof-section { padding: 80px 0; background: white; }
.proof-card {
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: .3s;
}
.proof-card:hover { border-color: var(--orange); box-shadow: 0 8px 30px rgba(0,55,144,0.1); }
.proof-card .proof-badge {
    display: inline-block;
    background: rgba(236,144,6,0.1);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 14px;
}
.proof-card h5 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.proof-card p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.proof-card .years { font-size: 1.8rem; font-weight: 700; color: var(--orange); margin-top: 16px; }
.proof-card .years span { font-size: 0.8rem; font-weight: 500; color: var(--gray); }

/*** Footer ***/
.footer { background: var(--blue-dark); padding: 70px 0 0; }
.footer h5 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: .2s;
}
.footer ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-logo img { height: 38px; margin-bottom: 16px; }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 50px 0 0; }
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 18px 0;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: var(--orange); text-decoration: none; }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: .3s;
}
.social-icons a:hover { border-color: var(--orange); color: var(--orange); }

/*** Contact form ***/
.contact-section { padding: 90px 0; }
.contact-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.form-control {
    border: 1.5px solid #e0e6ee;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: .2s;
}
.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(236,144,6,0.1);
}
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--blue); }

/*** Utility ***/
.text-orange { color: var(--orange) !important; }
.text-blue   { color: var(--blue) !important; }
.bg-blue     { background: var(--blue) !important; }
.bg-orange   { background: var(--orange) !important; }
.bg-light-custom { background: var(--light) !important; }
.section-pad { padding: 90px 0; }
