/* ------ HERO SECTION ------ */
.hero-section {
    padding: 8rem 24px 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

/* ------ HERO BACKGROUND SLIDER ------ */
.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay oscuro sobre las imágenes */
.hero-background-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 31, 63, 0.35) 0%,
        rgba(0, 31, 63, 0.55) 50%,
        rgba(0, 31, 63, 0.35) 100%
    );
    z-index: 1;
}

/* Patrón geométrico animado */
/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.07) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.07) 70px);
    pointer-events: none;
    z-index: 2;
}*/

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 3;
}


/* Microanimaciones de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Rating Container - Para alinear el pointer fuera */
.hero-rating-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.hero-rating-container:hover {
    transform: scale(1.01);
}

/* Rating Box */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 2px dashed var(--vib-dark-blue-1);
    animation: fadeInUp 0.6s ease-out 0.1s both;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-rating:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 0 var(--vib-dark-blue-1);
}

/* Rating Container - Para alinear el pointer fuera */
.hero-rating-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

/* Rating Box */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    background: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 2px dashed var(--vib-dark-blue-1);
    animation: fadeInUp 0.6s ease-out 0.1s both;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-rating:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 0 var(--vib-dark-blue-1);
}

/* Cursor Pointer Animado - Apuntando RECTO hacia la izquierda (hacia el rating) */
.rating-pointer {
    font-size: 2rem;
    color: #FFD700;
    animation: pointerSlide 1.5s ease-in-out infinite;
    display: flex;
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transform: rotate(-45deg);
}

@keyframes pointerSlide {
    0%, 100% {
        transform: translateX(0) rotate(-45deg);
    }
    50% {
        transform: translateX(10px) rotate(-40deg);
    }
}

/* Hover effect en el pointer cuando el rating está en hover */
.hero-rating-container:hover .rating-pointer {
    animation-duration: 0.8s;
    color: var(--vib-white);
}

/* Stars Rating - Sin cambios */
.stars-rating {
    display: flex;
    gap: 0.25rem;
}

.stars-rating i {
    color: #FFD700;
    font-size: 1rem;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
    animation: starPulse 2s ease-in-out infinite;
    fill: currentColor; 
}

.stars-rating i:nth-child(1) { animation-delay: 0s; }
.stars-rating i:nth-child(2) { animation-delay: 0.1s; }
.stars-rating i:nth-child(3) { animation-delay: 0.2s; }
.stars-rating i:nth-child(4) { animation-delay: 0.3s; }
.stars-rating i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.rating-text {
    font-family: var(--font-family-2);
    font-size: 0.95rem;
    color: var(--vib-white);
    font-weight: 500;
}

.rating-text strong {
    color: var(--vib-white);
    font-weight: 700;
}

.rating-text-short {
    display: none;
    font-family: var(--font-family-2);
    font-size: 0.95rem;
    color: var(--vib-dark-blue-1);
    font-weight: 500;
}

.rating-text-short strong {
    color: var(--vib-dark-blue-1);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 640px) {
    .hero-rating-container {
        gap: 0.75rem;
    }

    .hero-rating {
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .rating-pointer {
        font-size: 1.5rem;
    }

    .rating-text {
        display: none;
        font-size: 0.875rem;
    }

    .rating-text-short {
        display: flex;
        font-size: 0.875rem;
    }

    .stars-rating i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-rating-container {
        gap: 0.5rem;
    }

    .rating-pointer {
        font-size: 1.25rem;
    }
}

/* Main Title */
.hero-title {
    font-size: 5.1rem;
    font-weight: 700;
    color: var(--vib-white);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.highlighted-word {
    display: inline-block;
    background: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
    padding: 0.1em 0.3em;
    position: relative;
    min-width: 450px;
    text-align: center;
    border-radius: 2px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--vib-white);
    font-family: var(--font-family-2);
    line-height: 1.6;
    max-width: 700px;
    margin: 0;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-subtitle strong {
    font-weight: 700;
    color: var(--vib-light-green-1);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.hero-buttons .button-primary,
.hero-buttons .button-secondary {
    padding: 1.5rem 2rem;
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-buttons .button-primary {
    background-color: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
}

.hero-buttons .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 0 var(--vib-dark-blue-1);
}

.hero-buttons .button-secondary {
    background-color: var(--vib-white);
    color: var(--vib-dark-blue-1);
}

.hero-buttons .button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 0 var(--vib-dark-blue-1);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .hero-section {
        padding: 6rem 24px 4rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .highlighted-word {
        min-width: 350px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 5rem 24px 3rem;
        min-height: auto;
    }

    .hero-container {
        gap: 1.5rem;
    }

    .hero-rating {
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .rating-text {
        display: none;
        font-size: 0.875rem;
    }

    .rating-text-short {
        display: flex;
        font-size: 0.875rem;
    }

    .stars-rating i {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .highlighted-word {
        min-width: 280px;
        padding: 0.1em 0.2em;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
    }

    .hero-buttons .button-primary,
    .hero-buttons .button-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .highlighted-word {
        min-width: 220px;
        font-size: 0.95em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons .button-primary,
    .hero-buttons .button-secondary {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}


/* ------ ACCREDITATION SLIDER ------ */
.accreditation-section {
    width: 100%;
    padding: 4rem 0;
    background: var(--vib-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}


.accreditation-header {
    width: 100%;
    padding: 0 24px;
}

.accreditation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    text-align: center;
    letter-spacing: 0.05em;
    margin: 0;
}

.accreditation-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.accreditation-track {
    display: flex;
    gap: 3rem;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
    align-items: center;
}

.accreditation-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-25%));
    }
}

.accreditation-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--vib-white);
    border: 2px solid var(--vib-dark-blue-1);
    border-radius: 2px;
    min-width: 220px;
    height: 140px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.accreditation-item img {
    max-width: auto;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Hover overlay con información */
.accreditation-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--vib-light-green-1);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 2px dashed var(--vib-dark-blue-1);
}

.accreditation-item:hover .accreditation-info {
    transform: translateY(0);
}

.accreditation-info-title {
    font-family: var(--font-family-2);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    margin: 0;
    line-height: 1.2;
}

.accreditation-info-desc {
    font-family: var(--font-family-2);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--vib-dark-blue-1);
    margin: 0;
    line-height: 1.3;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 968px) {
    .accreditation-section {
        gap: 2rem;
    }

    .accreditation-title {
        font-size: 1.25rem;
    }

    .accreditation-track {
        gap: 2.5rem;
    }

    .accreditation-item {
        min-width: 200px;
        height: 120px;
        padding: 1.5rem;
    }

    .accreditation-item img {
        max-width: 160px;
        max-height: 80px;
    }

    .accreditation-info {
        padding: 0.75rem;
    }

    .accreditation-info-title {
        font-size: 0.875rem;
    }

    .accreditation-info-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .accreditation-section {
        gap: 1.5rem;
    }

    .accreditation-title {
        font-size: 1.125rem;
    }

    .accreditation-track {
        gap: 2rem;
        animation: scrollLogos 20s linear infinite;
    }

    .accreditation-item {
        min-width: 160px;
        height: 100px;
        padding: 1.25rem;
        box-shadow: 2px 2px 0 0 var(--vib-dark-blue-1);
    }

    .accreditation-item:hover {
        box-shadow: 3px 3px 0 0 var(--vib-dark-blue-1);
    }

    .accreditation-item img {
        max-width: 130px;
        max-height: 65px;
    }

    .accreditation-info {
        padding: 0.625rem;
    }

    .accreditation-info-title {
        font-size: 0.8rem;
    }

    .accreditation-info-desc {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .accreditation-title {
        font-size: 1rem;
    }

    .accreditation-track {
        gap: 1.5rem;
    }

    .accreditation-item {
        min-width: 140px;
        height: 90px;
        padding: 1rem;
    }

    .accreditation-item img {
        max-width: 110px;
        max-height: 55px;
    }

    .accreditation-info {
        padding: 0.5rem;
    }

    .accreditation-info-title {
        font-size: 0.75rem;
    }

    .accreditation-info-desc {
        font-size: 0.65rem;
    }
}


/* ------ CERTIFICATIONS SECTION ------ */
.certifications-section {
    padding: 5rem 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--vib-white);
}

.certifications-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.certifications-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.certifications-badge {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    border: 2px dashed var(--vib-dark-blue-1);
    width: fit-content;
    background: var(--vib-white);
}

.certifications-badge-text {
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
}

.certifications-badge i {
    display: flex;
    align-items: center;
    color: var(--vib-dark-blue-1);
    font-size: 1.125rem;
}

.certifications-badge svg {
    display: flex;
    align-items: center;
    color: var(--vib-dark-blue-1);
    font-size: 1.125rem;
    width: 1.125rem;
    height: 1.125rem;
    fill: currentColor; /* 👈 Hereda el color */
}

.certifications-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.2;
    max-width: 800px;
}

.certifications-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.certification-card {
    position: relative;
    will-change: transform;
    display: flex;
    flex-direction: column;
}

.certification-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    background: var(--vib-gray);
    border: 2px solid var(--vib-dark-blue-1);
    border-radius: 2px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}



/* Ensure content is above the pattern */
.certification-card-left,
.certification-card-right {
    position: relative;
    z-index: 1;
}


.certification-card-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certification-card-header {
    display: flex;
    gap: 10px;
    align-items: center;
}


.certification-card-header i{
    display: flex;
    color: var(--vib-dark-blue-1);
    font-size: 1.5rem;
}

.certification-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.3;
}

.certification-card-text {
    font-size: 1rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    line-height: 1.6;
    opacity: 0.9;
}

.certification-card-cta {
    padding: 1rem 1.5rem;
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    background: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    text-decoration: none;
}

.certification-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 0 var(--vib-dark-blue-1);
}

.certification-card-cta i {
    display: flex;
    transition: transform 0.3s ease;
}

.certification-card-cta:hover i {
    transform: translateX(4px);
}

.certification-card-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 80px;
}

.certification-card-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 968px) {
    .certifications-section {
        padding: 4rem 24px;
    }

    .certifications-container {
        gap: 3rem;
    }

    .certifications-title {
        font-size: 2.5rem;
    }

    .certifications-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .certification-card-inner {
        padding: 1.75rem;
    }

    .certification-card-title {
        font-size: 1.35rem;
    }

    .certification-card-text {
        font-size: 0.9rem;
    }

    .certification-card-image {
        max-height: 180px;
    }
}

@media (max-width: 640px) {
    .certifications-container {
        gap: 2.5rem;
    }

    .certifications-title {
        font-size: 2rem;
    }

    .certifications-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certification-card-inner {
        padding: 1.5rem;
    }

    .certification-card-title {
        font-size: 1.25rem;
    }

    .certification-card-text {
        font-size: 0.95rem;
    }

    .certification-card-image {
        width: 100%;
    }

    .certification-card-cta {
        padding: .625rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .certifications-title {
        font-size: 1.75rem;
    }

    .certification-card-title {
        font-size: 1.15rem;
    }
}


/* ------ ABOUT SECTION ------ */
.about-section {
    padding: 10rem 24px;
    background: var(--vib-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated geometric shapes background 
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 0, 0, 0.01) 35px, rgba(0, 0, 0, 0.02) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0, 0, 0, 0.01) 35px, rgba(0, 0, 0, 0.02) 70px);
    pointer-events: none;
}*/

.about-container {
    max-width: 1400px;
    width: 100%;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 3rem;
    align-items: start;
}

/* LEFT COLUMN - 600px Fixed */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 600px;
}

.about-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    border: 2px dashed var(--vib-dark-blue-1);
    width: fit-content;
    background: transparent;
}

.about-badge-text {
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
}

.about-badge i {
    display: flex;
    align-items: center;
    color: var(--vib-dark-blue-1);
    font-size: 1.125rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.2;
    margin: 0;
}

.about-description {
    font-size: 1rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Main Gallery Item with Video Overlay */
.gallery-item {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: var(--vib-light-blue-1);
}

.gallery-item img{
    border: 2px solid var(--vib-dark-blue-1);
}

.gallery-main {
    height: 500px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-main img {
    height: 500px;
}


/* Video Overlay */
.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--vib-light-green-1);
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-overlay i {
    display: flex;
    color: var(--vib-dark-blue-1);
    font-size: 1.5rem;
    margin-left: 3px;
}

.gallery-item:hover .gallery-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* RIGHT SIDE - Two Inner Columns */
.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    height: 100%;
}

/* First Inner Column: 3 rows */
.gallery-column-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-image-1 {
    min-height: 410px;
}

/* Second Inner Column: tall image + CTA */
.gallery-column-right {
    display: grid;
    grid-template-rows: 525px;
    gap: 1.5rem;
}

.gallery-image-tall {
    height: 525px;
}

.gallery-image-tall img{
    height: 100%;
}

/* Stats Cards */
.gallery-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 2px;
    text-align: center;
    min-height: 100px;
}

.gallery-stats-dark {
    background: var(--vib-light-green-1);
    border: 2px solid var(--vib-dark-blue-1);
}

.gallery-stats-dark .stats-number {
    color: var(--vib-dark-blue-1);
}

.gallery-stats-dark .stats-label {
    color: var(--vib-dark-blue-1);
}

.gallery-stats-light {
    background: var(--vib-light-green-1);
    border: 2px solid var(--vib-dark-blue-1);
}

.gallery-stats-light .stats-number {
    color: var(--vib-dark-blue-1);
}

.gallery-stats-light .stats-label {
    color: var(--vib-dark-blue-1);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 0.95rem;
    font-family: var(--font-family-2);
    font-weight: 600;
    opacity: 0.9;
}

/* CTA Button - Circular with Text */
.gallery-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--vib-white);
    border: 2px dashed var(--vib-dark-blue-1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-cta a {
    text-decoration: none;
}

.gallery-cta:hover {
    transform: translateY(-4px);
    box-shadow: 5px 5px 0 0 var(--vib-dark-blue-1);
}

.gallery-cta i {
    display: flex;
    color: var(--vib-dark-blue-1);
    font-size: 1.5rem;
}


.gallery-cta-text {
    display: flex;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    letter-spacing: 0.1em;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 500px 1fr;
    }

    .about-text {
        width: 500px;
    }

    .about-title {
        font-size: 2rem;
    }

    .gallery-main img {
        height: 390px;
    }

    .gallery-main {
        min-height: 390px;
    }

    .gallery-image-tall {
        height: 500px;
    }

    .gallery-column-right {
        grid-template-rows: 500px;
    }
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .gallery-column-left,
    .gallery-column-right {
        display: contents;
    }

    .gallery-image-1 {
        display: none;
    }
    .gallery-image-tall {
        display: none;
    }

    .gallery-stats-dark {
        grid-column: 1;
        grid-row: 2;
    }

    .gallery-stats-light {
        grid-column: 1;
        grid-row: 3;
    }

    .gallery-image-tall {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .gallery-cta {
        padding: 2rem;
        grid-column: 1;
        grid-row: 4;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .about-section {
        padding: 4rem 24px;
    }

    .about-content {
        gap: 2rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 0.95rem;
    }
    
    .about-gallery {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .gallery-stats-dark,
    .gallery-stats-light,
    .gallery-cta {
        grid-column: 1;
        grid-row: auto;
        padding: .625rem 1rem;
    }

    .gallery-image-tall {
        min-height: 350px;
    }

    .stats-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }
}



/* ------ SERVICES SECTION ------ */
.services-scroll-section {
    position: relative;
    height: calc(100vh + 700vw);
}

.services-sticky-container {
    position: sticky;
    top: 0;
    min-height: 100vh;
    overflow: hidden;
}

.services-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.services-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    border: 2px dashed var(--vib-dark-blue-1);
    width: fit-content;
    background: var(--vib-white);
}

.services-badge-text {
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-weight: 600;
}

.services-badge i {
    display: flex;
    align-items: center;
    color: var(--vib-dark-blue-1);
    font-size: 1.125rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.2;
    margin: 0;
    padding: 0 24px;
}

.services-horizontal-container {
    display: flex;
    gap: 2rem;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Service Card - Nuevo diseño con imagen */
.service-card {
    flex: 0 0 450px;
    min-width: 450px;
    display: flex;
    flex-direction: column;
    background: var(--vib-white);
    border: 2px solid var(--vib-dark-blue-1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

/* Imagen de la card */
.service-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--vib-gray);
    border-bottom: 2px solid var(--vib-dark-blue-1);
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Contenido de la card */
.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: var(--vib-light-blue-1);
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-icon i {
    font-size: 1.5rem;
    color: var(--vib-dark-blue-1);
    display: flex;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.3;
    margin: 0;
}

.service-card-cta {
    padding: 1rem 1.5rem;
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    background: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.service-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 0 var(--vib-dark-blue-1);
}

.service-card-cta i {
    display: flex;
    transition: transform 0.3s ease;
}

.service-card-cta:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 968px) {
    .services-title {
        font-size: 2.5rem;
    }

    .service-card {
        flex: 0 0 380px;
        min-width: 380px;
    }

    .service-card-image {
        height: 240px;
    }

    .service-card-content {
        padding: 1.75rem;
    }

    .service-card-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 640px) {
    .services-header {
        margin-bottom: 2.5rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-card {
        flex: 0 0 320px;
        min-width: 320px;
    }

    .service-card-image {
        height: 200px;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .service-card-title {
        font-size: 1.25rem;
    }

    .service-card-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.75rem;
    }

    .service-card {
        flex: 0 0 360px;
        min-width: 360px;
    }

    .service-card-image {
        height: 220px;
    }

    .service-card-icon {
        width: 45px;
        height: 45px;
    }

    .service-card-icon i {
        font-size: 1.25rem;
    }

    .service-card-title {
        font-size: 1.15rem;
    }
}

/* ------ INDUSTRIES SECTION ------ */
.industries-section {
    padding: 5rem 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--vib-white);
}

.industries-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.industries-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.industries-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    border: 2px dashed var(--vib-dark-blue-1);
    width: fit-content;
    background: var(--vib-white);
}

.industries-badge-text {
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
}

.industries-badge i {
    display: flex;
    align-items: center;
    color: var(--vib-dark-blue-1);
    font-size: 1.125rem;
}

.industries-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.2;
    margin: 0;
}

.industries-subtitle {
    font-size: 1.125rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    max-width: 700px;
}

/* Tabs Navigation */
.industries-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tab {
    padding: 1rem 1.5rem;
    border: 2px solid var(--vib-dark-blue-1);
    border-radius: 2px;
    background: var(--vib-white);
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-tab i {
    display: flex;
    font-size: 1.125rem;
}

.industry-tab:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 0 var(--vib-dark-blue-1);
}

.industry-tab.active {
    background: var(--vib-light-blue-1);
    border: 2px dashed var(--vib-dark-blue-1);
    box-shadow: 3px 3px 0 0 var(--vib-dark-blue-1);
}

/* Tab Content */
.industries-content {
    position: relative;
    min-height: 500px;
}

.industry-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.industry-panel.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-panel-left {
    width: 100%;
    height: 500px;
    border: 2px solid var(--vib-dark-blue-1);
    border-radius: 2px;
    overflow: hidden;
    background: var(--vib-gray);
}

.industry-panel-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.industry-panel-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-panel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.2;
    margin: 0;
}

.industry-panel-description {
    font-size: 1rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.industry-panel-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.industry-panel-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
}

.industry-panel-features li i {
    color: var(--vib-dark-green-1);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    display: flex;
}

.industry-panel-cta {
    padding: 1rem 1.5rem;
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    background: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    text-decoration: none;
}

.industry-panel-cta:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 0 var(--vib-dark-blue-1);
}

.industry-panel-cta i {
    display: flex;
    transition: transform 0.3s ease;
}

.industry-panel-cta:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 968px) {
    .industries-section {
        padding: 4rem 24px;
    }

    .industries-container {
        gap: 2.5rem;
    }

    .industries-title {
        font-size: 2.5rem;
    }

    .industries-subtitle {
        font-size: 1rem;
    }

    .industries-tabs {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .industry-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .industry-panel {
        gap: 2rem;
    }

    .industry-panel-left {
        height: 400px;
    }

    .industry-panel-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .industries-container {
        gap: 2rem;
    }

    .industries-title {
        font-size: 2rem;
    }

    .industries-subtitle {
        font-size: 0.95rem;
    }

    .industries-tabs {
        padding: 0;
        gap: 0.625rem;
    }

    .industry-tab {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }

    .industry-tab span {
        display: none;
    }

    .industry-tab i {
        font-size: 1.25rem;
    }

    .industry-panel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
    }

    .industry-panel-left {
        height: 300px;
    }

    .industry-panel-title {
        font-size: 1.75rem;
    }

    .industry-panel-description {
        font-size: 0.95rem;
    }

    .industry-panel-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .industries-section {
        padding: 3rem 24px;
    }

    .industries-title {
        font-size: 1.75rem;
    }

    .industry-tab {
        padding: 0.5rem 0.875rem;
    }

    .industry-panel-left {
        height: 250px;
    }

    .industry-panel-title {
        font-size: 1.5rem;
    }
}



/* ------ TEAM SECTION ------ */
.team-section {
    padding: 5rem 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--vib-white);
}

.team-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.team-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}

.team-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    border: 2px dashed var(--vib-dark-blue-1);
    width: fit-content;
    background: var(--vib-white);
}

.team-badge-text {
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
}

.team-badge i {
    display: flex;
    align-items: center;
    color: var(--vib-dark-blue-1);
    font-size: 1.125rem;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.2;
    margin: 0;
}

.team-subtitle {
    font-size: 1.125rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    max-width: 700px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
}

.team-card {
    background: var(--vib-white);
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 5px 5px 0 0 var(--vib-dark-blue-1);
}

.team-card-image {
    width: 100%;
    height: 400px;
    background: var(--vib-gray);
    border-bottom: 2px solid var(--vib-dark-blue-1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-image-placeholder {
    font-size: 6rem;
    color: var(--vib-dark-blue-1);
    opacity: 0.15;
    display: flex;
}

.team-card-info {
    padding: 2rem;
    background: var(--vib-gray);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    margin: 0;
}

.team-card-role {
    font-size: 1rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    font-weight: 600;
    opacity: 0.9;
}

.team-card-company {
    font-size: 0.95rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.team-card-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--vib-light-green-1);
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.team-card-contact i {
    display: flex;
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
}

.team-card-contact span {
    font-size: 0.95rem;
    font-family: var(--font-family-2);
    font-weight: 600;
    color: var(--vib-dark-blue-1);
}

/* RESPONSIVE STYLES */
@media (max-width: 968px) {
    .team-section {
        padding: 4rem 24px;
    }

    .team-container {
        gap: 3rem;
    }

    .team-title {
        font-size: 2.5rem;
    }

    .team-subtitle {
        font-size: 1rem;
    }

    .team-grid {
        gap: 1.5rem;
    }

    .team-card-image {
        height: 350px;
    }

    .team-card-info {
        padding: 1.75rem;
    }
}

@media (max-width: 640px) {
    .team-container {
        gap: 2.5rem;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-subtitle {
        font-size: 0.95rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-card-info {
        padding: 1.5rem;
    }

    .team-card-name {
        font-size: 1.35rem;
    }

    .team-card-role {
        font-size: 0.95rem;
    }

    .team-card-company {
        font-size: 0.9rem;
    }

    .team-card-contact {
        padding: 0.625rem 0.875rem;
    }

    .team-card-contact span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 3rem 24px;
    }

    .team-title {
        font-size: 1.75rem;
    }

    .team-grid {
        gap: 1.25rem;
    }

    .team-card-info {
        padding: 1.25rem;
    }

    .team-card-name {
        font-size: 1.25rem;
    }

    .team-card-role {
        font-size: 0.9rem;
    }

    .team-card-company {
        font-size: 0.85rem;
    }

    .team-card-image-placeholder {
        font-size: 5rem;
    }

    .team-card-contact {
        padding: 0.5rem 0.75rem;
    }

    .team-card-contact span {
        font-size: 0.85rem;
    }
}




/* ------ TESTIMONIALS SECTION ------ */
.testimonials-section {
    padding: 5rem 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--vib-white);
}

.testimonials-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.testimonials-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    border: 2px dashed var(--vib-dark-blue-1);
    width: fit-content;
    background: var(--vib-white);
}

.testimonials-badge-text {
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
}

.testimonials-badge i {
    display: flex;
    align-items: center;
    color: var(--vib-dark-blue-1);
    font-size: 1.125rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.2;
    margin: 0;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    max-width: 700px;
}

/* Testimonials Grid - Máximo 2 por fila */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    width: 100%;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
    height: 100%;
}

.testimonial-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--vib-gray);
    border: 2px solid var(--vib-dark-blue-1);
    border-radius: 2px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--vib-light-green-1);
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote-icon i {
    font-size: 2rem;
    color: var(--vib-dark-blue-1);
    display: flex;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.125rem;
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
}

/* Company Name */
.testimonial-company {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--vib-dark-blue-1);
    position: relative;
    z-index: 1;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--vib-light-blue-1);
    border: 2px solid var(--vib-dark-blue-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author-image i {
    font-size: 1.75rem;
    color: var(--vib-dark-blue-1);
    display: flex;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.2;
}

.testimonial-author-role {
    font-size: 0.95rem;
    font-family: var(--font-family-2);
    font-weight: 600;
    color: var(--vib-dark-blue-1);
    opacity: 0.8;
}

.testimonial-author-company {
    font-size: 0.875rem;
    font-family: var(--font-family-2);
    color: var(--vib-dark-blue-1);
    opacity: 0.6;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .testimonials-section {
        padding: 4rem 24px;
    }

    .testimonials-container {
        gap: 3rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonials-grid {
        gap: 1.5rem;
    }

    .testimonial-card-inner {
        padding: 2rem;
    }

    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        top: 1.5rem;
        right: 1.5rem;
    }

    .testimonial-quote-icon i {
        font-size: 1.75rem;
    }

    .testimonial-company {
        font-size: 1.35rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .testimonials-container {
        gap: 2.5rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 0.95rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card-inner {
        padding: 1.75rem;
        gap: 1.25rem;
    }

    .testimonial-quote-icon {
        width: 45px;
        height: 45px;
        top: 1.25rem;
        right: 1.25rem;
    }

    .testimonial-quote-icon i {
        font-size: 1.5rem;
    }

    .testimonial-rating i {
        font-size: 1rem;
    }

    .testimonial-company {
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-author {
        padding-top: 1.25rem;
    }

    .testimonial-author-image {
        width: 50px;
        height: 50px;
    }

    .testimonial-author-image i {
        font-size: 1.5rem;
    }

    .testimonial-author-name {
        font-size: 1rem;
    }

    .testimonial-author-role {
        font-size: 0.9rem;
    }

    .testimonial-author-company {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 24px;
    }

    .testimonials-title {
        font-size: 1.75rem;
    }

    .testimonial-card-inner {
        padding: 1.5rem;
    }

    .testimonial-quote-icon {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }

    .testimonial-quote-icon i {
        font-size: 1.25rem;
    }

    .testimonial-company {
        font-size: 1.15rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}