.top-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px;
    background: #111;
}

.home-btn {
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
}

.home-btn:hover {
    opacity: .9;
}

.page-header {
    text-align: center;
    padding: 30px 15px;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: #777;
    max-width: 700px;
    margin: auto;
}

.profile-page {
    padding: 20px;
}


/* BACK BUTTON */

.back-btn {
    display: inline-block;
    margin-bottom: 25px;
    background: linear-gradient( 135deg, var(--navy), #2646b0);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}


/* PROFILE TOP */

.profile-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-image-wrap {
    position: relative;
    max-width: 520px;
    margin: auto;
}

.profile-image-wrap img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* VIDEO ICON */

.profile-video-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}


/* BADGE */

.profile-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient( 135deg, var(--gold), #f59e0b);
    color: #111827;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
}


/* INFO */

.profile-info h1 {
    margin: 0;
    color: var(--navy);
}

.profile-city {
    margin-top: 8px;
    color: var(--muted);
}


/* BUTTONS */

.profile-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.profile-call-btn,
.profile-whatsapp-btn {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: white;
}

.profile-call-btn {
    background: linear-gradient( 135deg, var(--navy), #2646b0);
}

.profile-whatsapp-btn {
    background: linear-gradient( 135deg, #22c55e, #16a34a);
}


/* ABOUT */

.profile-about,
.profile-services {
    margin-top: 30px;
}


/* VIDEO GALLERY */

.video-gallery {
    margin-top: 50px;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.video-gallery video {
    width: 100%;
    border-radius: 14px;
}


/* IMAGE GALLERY */

.image-gallery {
    margin-top: 50px;
}

.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.image-gallery-grid img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}


/* RELATED */

.related-section {
    margin-top: 60px;
}

.related-section h2 {
    color: var(--navy);
    margin-bottom: 20px;
}


/* =================================
IMAGE MODAL
================================= */

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}


/* SHOW MODAL */

.image-modal.active {
    display: flex;
}


/* MODAL IMAGE */

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 14px;
    animation: zoomIn 0.25s ease;
}


/* CLOSE BUTTON */

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}


/* CLICKABLE IMAGES */

.image-gallery-grid img {
    cursor: pointer;
    transition: 0.3s;
}

.image-gallery-grid img:hover {
    transform: scale(1.02);
}


/* ANIMATION */

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}