.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('../media/category-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-hero-content h1 {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-subtitle {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 2rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

.section-tagline {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-story {
    padding: 10rem 0;
    background-color: var(--dark-bg);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-image .image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.story-image img {
    width: 100%;
    display: block;
    transform: scale(1.05);
    transition: transform 1.5s ease;
}

.story-image:hover img {
    transform: scale(1);
}

.frame-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold);
    pointer-events: none;
    opacity: 0.7;
}

.story-text {
    color: var(--light-gray);
}

.story-text p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.8;
}

.story-text .emphasized {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.mission-block h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.about-values {
    padding: 10rem 0;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/category-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.value-icon i {
    font-size: 2.8rem;
    color: var(--gold);
}

.value-card h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.value-card p {
    font-size: 1.5rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.opulence-difference {
    padding: 10rem 0;
    background-color: var(--dark-bg);
}

.difference-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.difference-text h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.difference-text h3:first-child {
    margin-top: 0;
}

.difference-text p {
    font-size: 1.6rem;
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.difference-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.highlight-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    min-height: 3.5rem;
}

.highlight-stat .stat-label {
    font-size: 1.4rem;
    color: var(--light-gray);
}

.about-team {
    padding: 10rem 0;
    background-color: rgba(0, 0, 0, 0.9);
    position: relative;
}

.about-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../media/category-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.team-intro {
    text-align: center;
    font-size: 1.8rem;
    color: var(--light-gray);
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
    background-color: rgba(0, 0, 0, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.8s ease;
}

.team-details h3,
.team-details .team-title,
.team-details p {
    transition: color 0.3s ease;
}

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

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.team-details {
    padding: 2.5rem;
    text-align: center;
}

.team-details h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-details .team-title {
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.team-details p {
    font-size: 1.5rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.about-process {
    padding: 10rem 0;
    background-color: var(--dark-bg);
    position: relative;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 2px;
    background: linear-gradient(to bottom,
            rgba(212, 175, 55, 0.1),
            rgba(212, 175, 55, 0.6),
            rgba(212, 175, 55, 0.1));
    z-index: 0;
}

.process-step {
    display: flex;
    margin-bottom: 5rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: relative;
    width: 70px;
    flex-shrink: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-right: 2rem;
}

.step-number span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.7));
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 2rem;
    font-weight: 600;
}

.step-content {
    flex-grow: 1;
    padding-top: 15px;
}

.step-content h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.step-content p {
    font-size: 1.6rem;
    color: var(--light-gray);
    line-height: 1.6;
    max-width: 600px;
}

.about-testimonials {
    padding: 10rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.about-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../media/bugatti.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.2);
}

.testimonial-quote {
    margin-bottom: 2.5rem;
    position: relative;
}

.testimonial-quote i {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 0;
}

.testimonial-quote p {
    font-size: 1.6rem;
    color: var(--light-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    margin-right: 1.5rem;
}

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

.author-details h4 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.author-details span {
    font-size: 1.4rem;
    color: var(--gold);
}

.about-partners {
    padding: 10rem 0;
    background-color: var(--dark-bg);
}

.partners-intro {
    text-align: center;
    font-size: 1.8rem;
    color: var(--light-gray);
    max-width: 800px;
    margin: 0 auto 5rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.logo-placeholder:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo-placeholder span {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.7);
    letter-spacing: 1px;
}

.about-cta {
    padding: 10rem 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('../media/villa.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0s);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 1200px) {

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-hero-content h1 {
        font-size: 5rem;
    }

    .section-header h2 {
        font-size: 3.6rem;
    }
}

@media screen and (max-width: 992px) {

    .story-content,
    .difference-content,
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-hero-content h1 {
        font-size: 4rem;
    }

    .about-subtitle {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 3.2rem;
    }

    .story-text .emphasized {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .team-image {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero {
        min-height: 60vh;
    }

    .about-hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .about-subtitle {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .about-story,
    .about-values,
    .opulence-difference,
    .about-team,
    .about-process,
    .about-testimonials,
    .about-partners,
    .about-cta {
        padding: 6rem 0;
    }

    .difference-image {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 30px;
    }

    .step-number {
        width: 60px;
    }

    .step-number span {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .team-image {
        height: 300px;
    }
}

@media screen and (max-width: 576px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 3rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .story-text .emphasized {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 3rem;
    }

    .value-card,
    .team-card,
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }

    .team-image {
        height: 260px;
    }
}


@keyframes glitch-anim-1 {

    0%,
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    20% {
        clip-path: polygon(15% 0, 85% 0, 85% 100%, 15% 100%);
    }

    30% {
        clip-path: polygon(0 15%, 100% 15%, 100% 85%, 0 85%);
    }

    40% {
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%);
        transform: translate3d(-5px, 0, 0);
    }

    50% {
        clip-path: polygon(0 15%, 90% 15%, 90% 85%, 0 85%);
        transform: translate3d(5px, 0, 0);
    }

    60% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    70% {
        clip-path: polygon(0 45%, 100% 45%, 100% 60%, 0 60%);
        transform: translate3d(3px, 0, 0);
    }
}

@keyframes glitch-anim-2 {

    0%,
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    15% {
        clip-path: polygon(0 30%, 100% 30%, 100% 70%, 0 70%);
    }

    25% {
        clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%);
        transform: translate3d(4px, 0, 0);
    }

    47% {
        clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
        transform: translate3d(-4px, 0, 0);
    }

    60% {
        clip-path: polygon(0 10%, 100% 10%, 100% 90%, 0 90%);
    }

    75% {
        clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
        transform: translate3d(-3px, 0, 0);
    }
}

@keyframes glitch-anim-text {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        color: var(--white);
    }

    25% {
        transform: translate3d(2px, 3px, 0) scale(1.01);
        color: var(--gold);
    }

    50% {
        transform: translate3d(-3px, -2px, 0) scale(0.99);
        color: #ff0050;
    }

    75% {
        transform: translate3d(1px, -1px, 0) scale(1.01);
        color: #00feff;
    }
}

.team-card.glitching {
    position: relative;
    overflow: hidden;
}

.team-card.glitching::before,
.team-card.glitching::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.07);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.team-card.glitching::before {
    animation: glitch-anim-1 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    animation-iteration-count: 1;
}

.team-card.glitching::after {
    animation: glitch-anim-2 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    animation-iteration-count: 1;
    animation-delay: 0.05s;
}

.team-card.glitching .team-image img {
    animation: glitch-anim-1 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-iteration-count: 1;
}

.team-card.glitching .team-details h3,
.team-card.glitching .team-details .team-title,
.team-card.glitching .team-details p {
    animation: glitch-anim-text 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-iteration-count: 1;
}

.glitch-rgb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
}

.glitch-rgb--red {
    background: rgba(255, 0, 80, 0.2);
    animation: glitch-rgb-red 0.6s ease-in-out both;
    animation-iteration-count: 1;
}

.glitch-rgb--green {
    background: rgba(0, 255, 128, 0.2);
    animation: glitch-rgb-green 0.6s ease-in-out both;
    animation-iteration-count: 1;
    animation-delay: 0.1s;
}

.glitch-rgb--blue {
    background: rgba(0, 128, 255, 0.2);
    animation: glitch-rgb-blue 0.6s ease-in-out both;
    animation-iteration-count: 1;
    animation-delay: 0.2s;
}

@keyframes glitch-rgb-red {

    0%,
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }

    25% {
        opacity: 0.5;
        transform: translate3d(2px, 1px, 0);
    }

    50% {
        opacity: 0.3;
        transform: translate3d(-2px, -1px, 0);
    }

    75% {
        opacity: 0.5;
        transform: translate3d(1px, -2px, 0);
    }
}

@keyframes glitch-rgb-green {

    0%,
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }

    25% {
        opacity: 0.5;
        transform: translate3d(-2px, -1px, 0);
    }

    50% {
        opacity: 0.3;
        transform: translate3d(2px, 1px, 0);
    }

    75% {
        opacity: 0.5;
        transform: translate3d(-1px, 2px, 0);
    }
}

@keyframes glitch-rgb-blue {

    0%,
    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
    }

    25% {
        opacity: 0.5;
        transform: translate3d(1px, -2px, 0);
    }

    50% {
        opacity: 0.3;
        transform: translate3d(-1px, 1px, 0);
    }

    75% {
        opacity: 0.5;
        transform: translate3d(2px, -1px, 0);
    }
}