/* =========================================
   PROFILE SHOWCASE SECTION
========================================= */

.profile-showcase-section {
    width: 100%;
    padding: 80px 0;
    background: #0a0a0a;
}


/* =========================================
   SECTION HEADING
========================================= */

.profile-showcase-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.profile-showcase-heading .section-subtitle {
    display: inline-block;
    margin-bottom: 12px;

    color: #d4af37;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.profile-showcase-heading h2 {
    margin: 0 0 18px;

    color: #fff;

    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;
}

.profile-showcase-heading p {
    max-width: 700px;
    margin: 0 auto;

    color: #bdbdbd;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   PROFILE GRID
========================================= */

.profile-showcase-grid {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 28px;

    width: 100%;
}


/* =========================================
   PROFILE CARD
========================================= */

.profile-showcase-card {

    position: relative;

    overflow: hidden;

    background: #111;

    border: 1px solid rgba(212, 175, 55, 0.15);

    border-radius: 22px;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.profile-showcase-card:hover {

    transform: translateY(-7px);

    border-color: rgba(212, 175, 55, 0.5);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.5);
}


/* =========================================
   PROFILE IMAGE
========================================= */

.profile-showcase-image {

    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #151515;
}

.profile-showcase-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0, 0, 0, 0.45) 100%
    );

    pointer-events: none;
}

.profile-showcase-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.profile-showcase-card:hover
.profile-showcase-image img {

    transform: scale(1.04);

}


/* =========================================
   PROFILE CONTENT
========================================= */

.profile-showcase-content {

    padding: 24px 24px 26px;
}

.profile-showcase-content h3 {

    margin: 0 0 8px;

    color: #fff;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 600;

    text-transform: capitalize;
}

.profile-showcase-type {

    display: block;

    color: #aaa;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================
   VIEW PROFILE LINK
========================================= */

.profile-showcase-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: #d4af37;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.profile-showcase-link span {

    font-size: 20px;

    line-height: 1;

    transition: transform 0.3s ease;
}

.profile-showcase-link:hover {

    color: #f0c94b;

}

.profile-showcase-link:hover span {

    transform: translateX(4px);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .profile-showcase-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .profile-showcase-section {

        padding: 60px 0;

    }

    .profile-showcase-heading {

        margin-bottom: 32px;

    }

    .profile-showcase-heading h2 {

        font-size: 34px;

    }

    .profile-showcase-heading p {

        font-size: 14px;

        line-height: 1.7;

    }

    .profile-showcase-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 14px;

    }

    .profile-showcase-card {

        border-radius: 15px;

    }

    .profile-showcase-image {

        aspect-ratio: 4 / 5;

    }

    .profile-showcase-content {

        padding: 15px 13px 17px;

    }

    .profile-showcase-content h3 {

        font-size: 18px;

        margin-bottom: 5px;

    }

    .profile-showcase-type {

        font-size: 11px;

        line-height: 1.4;

    }

    .profile-showcase-link {

        margin-top: 14px;

        font-size: 12px;

        gap: 5px;

    }

    .profile-showcase-link span {

        font-size: 17px;

    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .profile-showcase-grid {

        gap: 10px;

    }

    .profile-showcase-content {

        padding: 13px 10px 15px;

    }

    .profile-showcase-content h3 {

        font-size: 16px;

    }

    .profile-showcase-type {

        font-size: 10px;

    }

    .profile-showcase-link {

        font-size: 11px;

    }

}

/* =========================================
   PROFILE DETAIL SECTION
========================================= */

.profile-detail-section {
    width: 100%;
    padding: 80px 20px;
    background: #0a0a0a;
}

.profile-detail-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;

    overflow: hidden;

    background: #111;

    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 24px;
}


/* IMAGE */

.profile-detail-image {
    width: 100%;
    height: 680px;
    overflow: hidden;
}

.profile-detail-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* DETAILS */

.profile-detail-info {
    padding: 55px 65px;
}

.profile-detail-badge {
    display: inline-block;

    margin-bottom: 15px;

    color: #d4af37;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.profile-detail-info h2 {
    margin: 0 0 8px;

    color: #fff;

    font-family: "Cormorant Garamond", serif;

    font-size: 52px;
    line-height: 1.1;
    font-weight: 600;
}

.profile-detail-role {
    display: block;

    margin-bottom: 25px;

    color: #d4af37;

    font-size: 16px;
    font-weight: 500;
}

.profile-detail-info > p {
    max-width: 600px;

    margin: 0;

    color: #bdbdbd;

    font-size: 16px;
    line-height: 1.85;
}


/* HIGHLIGHTS */

.profile-detail-highlights {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 35px;
}

.profile-detail-highlight {
    padding: 18px 15px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(212, 175, 55, 0.12);

    border-radius: 12px;
}

.profile-detail-highlight span {
    display: block;

    margin-bottom: 7px;

    color: #888;

    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-detail-highlight strong {
    display: block;

    color: #fff;

    font-size: 14px;

    line-height: 1.4;
}


/* PRICE */

.profile-detail-price {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 35px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-detail-price span {
    color: #aaa;

    font-size: 14px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-detail-price strong {
    color: #d4af37;

    font-family: "Cormorant Garamond", serif;

    font-size: 32px;
    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .profile-detail-container {
        grid-template-columns: 45% 55%;
    }

    .profile-detail-image {
        height: 600px;
    }

    .profile-detail-info {
        padding: 40px;
    }

    .profile-detail-info h2 {
        font-size: 44px;
    }

    .profile-detail-highlights {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .profile-detail-section {
        padding: 50px 15px;
    }

    .profile-detail-container {
        display: block;
        border-radius: 18px;
    }

    .profile-detail-image {
        height: 430px;
    }

    .profile-detail-info {
        padding: 30px 22px 32px;
    }

    .profile-detail-info h2 {
        font-size: 36px;
    }

    .profile-detail-role {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .profile-detail-info > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .profile-detail-highlights {
        grid-template-columns: 1fr 1fr;

        gap: 10px;

        margin-top: 25px;
    }

    .profile-detail-highlight {
        padding: 14px 12px;
    }

    .profile-detail-highlight:last-child {
        grid-column: 1 / -1;
    }

    .profile-detail-price {
        margin-top: 25px;
        padding-top: 20px;
    }

    .profile-detail-price strong {
        font-size: 27px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .profile-detail-image {
        height: 380px;
    }

    .profile-detail-info {
        padding: 25px 18px;
    }

    .profile-detail-info h2 {
        font-size: 32px;
    }

    .profile-detail-highlights {
        grid-template-columns: 1fr;
    }

    .profile-detail-highlight:last-child {
        grid-column: auto;
    }

}

/*====================================
PROFILE ABOUT
====================================*/

.profile-about-section{
    padding:90px 0;
}

.profile-about-content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.profile-about-content h2{
    margin-bottom:25px;
}

.profile-about-content p{
    margin:0;
    line-height:1.9;
}


/* MOBILE */

@media(max-width:767px){

    .profile-about-section{
        padding:60px 0;
    }

    .profile-about-content{
        max-width:100%;
    }

    .profile-about-content p{
        line-height:1.8;
    }

}
/*====================================
PROFILE SERVICES
====================================*/

.profile-services{
    padding:90px 0;
}

.profile-services .section-heading{
    max-width:800px;
    margin:0 auto 45px;
    text-align:center;
}

.service-buttons{
    max-width:900px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
}

.service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:12px 24px;
    border:1px solid rgba(212,175,55,.3);
    border-radius:30px;
    background:rgba(212,175,55,.05);
    color:#fff;
    font-size:14px;
    font-weight:500;
    transition:all .3s ease;
}

.service-btn:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#111;
    transform:translateY(-2px);
}


/*====================================
MOBILE
====================================*/

@media(max-width:767px){

    .profile-services{
        padding:60px 0;
    }

    .profile-services .section-heading{
        margin-bottom:30px;
    }

    .service-buttons{
        gap:10px;
    }

    .service-btn{
        min-height:44px;
        padding:10px 16px;
        font-size:12px;
    }

}

