/* ═══════════════════════════════════════════════
   Despre Noi — About page styles
   ═══════════════════════════════════════════════ */

/* ── Heading Section (shared pattern) ── */
.rnt-subheading {
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
    color: var(--rnt-primary);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.rnt-subheading--white {
    color: rgba(255, 255, 255, 0.8);
}

.rnt-heading {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.rnt-heading--white {
    color: var(--rnt-text-white);
}

@media (max-width: 767px) {
    .rnt-heading { font-size: 28px; }
}


/* ── ftco-about pattern: image left, accent bg right ── */
.rnt-ftco-about {
    position: relative;
    z-index: 0;
}

.rnt-ftco-about::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--rnt-accent) 0%, var(--rnt-accent-dark) 100%);
    z-index: -2;
    width: 63%;
}

@media (max-width: 767px) {
    .rnt-ftco-about::after { width: 100%; }
}

.rnt-ftco-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
    .rnt-ftco-about__grid { grid-template-columns: 1fr; }
}

.rnt-ftco-about__img {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 767px) {
    .rnt-ftco-about__img { height: 350px; min-height: auto; }
}

.rnt-ftco-about__text {
    display: flex;
    align-items: center;
}

.rnt-ftco-about__inner {
    padding: 48px 60px;
    color: var(--rnt-text-white);
}

.rnt-ftco-about__inner p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.rnt-btn--white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    background: var(--rnt-primary);
    color: var(--rnt-text-white);
    border: 2px solid var(--rnt-primary);
    border-radius: var(--rnt-radius);
    font-weight: 600;
    font-family: var(--rnt-font-family);
    font-size: 14px;
    text-decoration: none;
    transition: var(--rnt-transition);
    letter-spacing: 0.3px;
}

.rnt-btn--white:hover {
    background: transparent;
    color: var(--rnt-text-white);
    border-color: var(--rnt-text-white);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .rnt-ftco-about__inner { padding: 36px 24px; }
}


/* ── ftco-intro pattern: CTA with rotated accent overlay ── */
.rnt-ftco-intro {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 0;
}

.rnt-ftco-intro__overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -2;
}

.rnt-ftco-intro__overlay-green {
    position: absolute;
    top: -120px;
    left: -100px;
    bottom: -120px;
    width: 40%;
    background: linear-gradient(135deg, var(--rnt-accent) 0%, var(--rnt-accent-dark) 100%);
    transform: rotate(20deg);
    z-index: -1;
}

@media (max-width: 767px) {
    .rnt-ftco-intro__overlay-green { display: none; }
}

.rnt-ftco-intro__content {
    max-width: 50%;
    margin-left: auto;
    text-align: left;
}

.rnt-ftco-intro__content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--rnt-text-white);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

@media (max-width: 767px) {
    .rnt-ftco-intro__content { max-width: 100%; text-align: center; }
    .rnt-ftco-intro__content h2 { font-size: 24px; }
    .rnt-ftco-intro { padding: 72px 0; }
}


/* ── Testimonials (with user images) ── */
.rnt-testimony-wrap {
    background: var(--rnt-light-alt);
    border-radius: var(--rnt-radius-lg);
    padding: 0 24px 32px;
    text-align: center;
    box-shadow: var(--rnt-shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.rnt-testimony-wrap:hover {
    transform: translateY(-6px);
    box-shadow: var(--rnt-shadow-md);
}

.rnt-testimony-wrap__img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    margin-top: -20px;
    margin-bottom: 16px;
    position: relative;
    top: -16px;
    border: 4px solid var(--rnt-light-alt);
    box-shadow: var(--rnt-shadow-sm);
}

.rnt-testimony-wrap__text p {
    color: var(--rnt-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.rnt-testimony-wrap__name {
    font-weight: 700;
    font-size: 18px;
    color: var(--rnt-text-primary) !important;
    margin-bottom: 4px !important;
}

.rnt-testimony-wrap__role {
    font-size: 12px;
    color: var(--rnt-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ── Counter Section (dark bg with image overlay) ── */
.rnt-ftco-counter {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rnt-ftco-counter__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(16, 137, 255, 0.2) 100%);
}

.rnt-ftco-counter .rnt-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.rnt-ftco-counter .rnt-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.rnt-ftco-counter .rnt-counter__number {
    font-size: 52px;
    font-weight: 800;
    color: var(--rnt-text-white);
    line-height: 1;
    letter-spacing: -1px;
}

.rnt-ftco-counter .rnt-counter__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    line-height: 1.4;
    font-weight: 500;
}

.rnt-ftco-counter .rnt-counter:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .rnt-ftco-counter .rnt-counter-grid { grid-template-columns: repeat(2, 1fr); }
    .rnt-ftco-counter .rnt-counter:not(:last-child) { border-right: none; }
}

@media (max-width: 575px) {
    .rnt-ftco-counter .rnt-counter-grid { grid-template-columns: 1fr; }
}
