/*==================================================
ABOUT HERO
==================================================*/

.about-hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        url("../images/about-superyacht-painting-hero.jpg") center center/cover no-repeat;

}

.about-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(8, 36, 55, .88) 0%,
            rgba(8, 36, 55, .72) 40%,
            rgba(8, 36, 55, .35) 100%);

}

.about-hero .container {

    position: relative;

    z-index: 2;

}

.about-hero-content {

    max-width: 760px;

    color: #fff;

}

.hero-tag {

    display: inline-block;

    padding: 10px 18px;

    margin-bottom: 28px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .18);

    border-radius: 50px;

    color: var(--accent);

    font-size: .85rem;

    letter-spacing: 2px;

    text-transform: uppercase;

    backdrop-filter: blur(8px);

}

.about-hero h1 {

    font-size: clamp(3rem, 6vw, 5.4rem);

    line-height: 1.05;

    margin-bottom: 30px;

    font-weight: 700;

    color: #fff;

}

.about-hero p {

    max-width: 680px;

    font-size: 1.18rem;

    line-height: 1.9;

    color: rgba(255, 255, 255, .88);

    margin-bottom: 45px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.hero-buttons .btn-primary,

.hero-buttons .btn-secondary {

    padding: 18px 38px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.hero-buttons .btn-primary {

    background: var(--accent);

    color: #082437;

}

.hero-buttons .btn-primary:hover {

    transform: translateY(-4px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);

}

.hero-buttons .btn-secondary {

    border: 2px solid rgba(255, 255, 255, .3);

    color: #fff;

}

.hero-buttons .btn-secondary:hover {

    background: #fff;

    color: #082437;

}

.hero-scroll {

    position: absolute;

    bottom: 45px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    color: #fff;

    gap: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: .72rem;

}

.scroll-line {

    width: 2px;

    height: 60px;

    background: rgba(255, 255, 255, .45);

    position: relative;

    overflow: hidden;

}

.scroll-line::after {

    content: "";

    position: absolute;

    top: -25px;

    left: 0;

    width: 100%;

    height: 25px;

    background: #fff;

    animation: scrollDown 2s infinite;

}

@keyframes scrollDown {

    0% {

        transform: translateY(-30px);

    }

    100% {

        transform: translateY(90px);

    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .about-hero {

        text-align: center;

    }

    .about-hero-content {

        margin: auto;

    }

    .hero-buttons {

        justify-content: center;

    }

}

@media(max-width:768px) {

    .about-hero {

        min-height: 90vh;

    }

    .about-hero h1 {

        font-size: 2.7rem;

    }

    .about-hero p {

        font-size: 1.02rem;

        line-height: 1.75;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons a {

        width: 100%;

    }

    .hero-scroll {

        display: none;

    }

}


/*==================================================
ABOUT COMPANY
==================================================*/

.about-company {

    background: #fff;

}

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.about-image {

    position: relative;

}

.about-image img {

    width: 100%;

    display: block;

    border-radius: 18px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);

}

.experience-card {

    position: absolute;

    right: -30px;

    bottom: 40px;

    background: var(--brand);

    color: #fff;

    padding: 30px;

    border-radius: 18px;

    width: 220px;

    text-align: center;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

}

.experience-card .number {

    display: block;

    font-size: 3rem;

    font-weight: 700;

    line-height: 1;

    margin-bottom: 10px;

}

.experience-card .text {

    display: block;

    font-size: .95rem;

    line-height: 1.6;

}

.about-content h2 {

    margin: 20px 0 30px;

    font-size: 2.8rem;

    line-height: 1.2;

}

.about-content p {

    margin-bottom: 24px;

    color: #666;

    line-height: 1.9;

    font-size: 1.05rem;

}

.about-features {

    margin-top: 45px;

    display: flex;

    flex-direction: column;

    gap: 28px;

}

.feature {

    display: flex;

    gap: 22px;

    align-items: flex-start;

}

.feature .icon {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: var(--brand);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.3rem;

    flex-shrink: 0;

}

.feature h4 {

    margin-bottom: 8px;

    color: var(--dark);

}

.feature p {

    margin: 0;

    font-size: .98rem;

}

@media(max-width:991px) {

    .about-grid {

        grid-template-columns: 1fr;

    }

    .about-image {

        order: 2;

    }

    .about-content {

        order: 1;

    }

    .experience-card {

        position: relative;

        right: auto;

        bottom: auto;

        margin-top: -50px;

        margin-left: auto;

    }

}

@media(max-width:768px) {

    .about-content h2 {

        font-size: 2.2rem;

    }

    .experience-card {

        width: 180px;

        padding: 24px;

    }

    .experience-card .number {

        font-size: 2.4rem;

    }

}


/*==================================================
WHY US
==================================================*/

.why-us {

    background: #f7f9fb;

}

.section-heading.center {

    max-width: 820px;

    margin: 0 auto 70px;

    text-align: center;

}

.section-heading.center h2 {

    margin: 20px 0 25px;

}

.section-heading.center p {

    color: #666;

    line-height: 1.8;

}

.why-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}

.why-card {

    background: #fff;

    padding: 45px 35px;

    border-radius: 18px;

    transition: .35s;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);

    border: 1px solid #edf1f5;

}

.why-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);

}

.why-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: rgba(1, 112, 143, .1);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    margin-bottom: 25px;

}

.why-card h3 {

    margin-bottom: 18px;

    color: var(--dark);

}

.why-card p {

    color: #666;

    line-height: 1.8;

    margin: 0;

}

@media(max-width:991px) {

    .why-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .why-grid {

        grid-template-columns: 1fr;

    }

}


/*==================================================
OUR EXPERTISE
==================================================*/

.expertise {

    background: #ffffff;

}

.expertise .section-heading {

    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;

}

.expertise-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

}

.expertise-card {

    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

    transition: .35s;

}

.expertise-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 80px rgba(0, 0, 0, .15);

}

.expertise-card img {

    width: 100%;

    height: 320px;

    object-fit: cover;

    display: block;

    transition: .5s;

}

.expertise-card:hover img {

    transform: scale(1.05);

}

.expertise-content {

    padding: 35px;

}

.expertise-content h3 {

    margin-bottom: 18px;

    color: var(--dark);

    font-size: 1.45rem;

}

.expertise-content p {

    color: #666;

    line-height: 1.8;

    margin: 0;

}

/*============================
Responsive
============================*/

@media(max-width:991px) {

    .expertise-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .expertise-card img {

        height: 260px;

    }

}