
.baskan-profil-container {
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
}

/* Tabs Styling */
.profil-tabs-nav {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.profil-tabs-nav .nav-pills {
    border: none;
    justify-content: flex-start;
}

.profil-tabs-nav .nav-link {
    border: none;
    color: #555;
    font-weight: 600;
    padding: 12px 25px;
    margin: 0 5px;
    border-radius: 10px;
    background-color: #f7f7f7;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.profil-tabs-nav .nav-link.active {
    color: #fff;
    background: var(--corporate-red)
}

/* Portrait Card Styling */
.mayor-card-wrap {
    position: relative;
    margin-bottom: 30px;
}

.mayor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.mayor-portrait {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 0.85 / 1;
}

.portrait-container {
    position: relative;
    width: 100%;
}

.mayor-signature-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 120px;
    height: auto;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    opacity: 0.9;
}

.mayor-social-bar {
    background: var(--secondary);
    padding: 18px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.mayor-social-bar a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.mayor-social-bar a:hover {
    transform: scale(1.2);
    opacity: 0.9;
}

.mayor-meta {
    text-align: center;
    padding: 25px 0;
}

.mayor-name-main {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.mayor-rank-main {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Area */
.content-card {
    background: #fff;
    padding: 0px;
    border-radius: 20px;
}

.bio-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    padding-left: 15px;
}



.bio-content {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    text-align: justify;
}

/* Carousel Styling */
.gallery-container {

    padding: 40px;
    background: #fcfcfc;
    border-radius: 30px;
}

.gallery-section-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
}

.baskan-gallery-owl .item {
    padding: 10px;
}

.baskan-gallery-owl img {
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    height: 12rem;
    object-fit: cover;
}

.baskan-gallery-owl .item:hover img {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Owl Nav Custom */
.baskan-gallery-owl .owl-nav button {
    width: 45px;
    height: 45px;
    background: #213261 !important;
    border-radius: 50% !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0,123,255,0.4) !important;
}

.baskan-gallery-owl .owl-nav button:hover {
    background: #0056b3 !important;
    transform: scale(1.1);
}

.baskan-gallery-owl .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .profil-tabs-nav .nav-link {
        padding: 10px 15px;
        font-size: 11px;
        margin: 2px;
    }
    .mayor-name-main { font-size: 24px; }
    .bio-title { font-size: 24px; }
}

/* Contact Form Premium Styling */
.contact-form-wrap {
    background: #f8fafc !important;
    padding: 3rem !important;
}

.contact-form-wrap .form-label {
    color: #475569;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.contact-form-wrap .input-group {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.contact-form-wrap .input-group:focus-within {
    border-color: var(--corporate-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.contact-form-wrap .input-group-text {
    background: #fff !important;
    border: none !important;
    padding-left: 18px;
    padding-right: 12px;
    color: #64748b;
}

.contact-form-wrap .form-control {
    border: none !important;
    padding: 14px 18px;
    font-size: 15px;
    color: #1e293b;
    box-shadow: none !important;
}

.contact-form-wrap .form-control::placeholder {
    color: #94a3b8;
}

.contact-form-wrap textarea.form-control {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    margin-top: 5px;
}

.contact-form-wrap textarea.form-control:focus {
    border-color: var(--corporate-red) !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1) !important;
}

.contact-form-wrap .btn-primary {
    background: var(--corporate-red) !important;
    border: none !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2) !important;
}

.contact-form-wrap .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3) !important;
    filter: brightness(1.1);
}
