کالباس مارتا معمولی
/* ===== Footer Modern Professional Style ===== */
.custom-footer {
width: 100%;
padding: 35px 20px;
background: linear-gradient(135deg, #1c1f26 0%, #2d323c 100%);
color: #ffffff;
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 -4px 14px rgba(0,0,0,0.25);
flex-wrap: wrap;
gap: 25px;
font-family: IRANSans, sans-serif;
}
.custom-footer .footer-section {
display: flex;
flex-direction: column;
gap: 8px;
}
.custom-footer .footer-title {
font-size: 18px;
font-weight: bold;
color: #58a6ff;
}
.custom-footer p,
.custom-footer a {
font-size: 15px;
line-height: 1.8;
color: #e6e6e6;
text-decoration: none;
transition: 0.3s ease;
}
.custom-footer a:hover {
color: #58a6ff;
transform: translateX(-3px);
}
/* Logo box */
.custom-footer .trust-logo-box {
padding: 12px;
background: rgba(255, 255, 255, 0.06);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: 0.35s ease;
}
.custom-footer .trust-logo-box:hover {
transform: scale(1.05);
background: rgba(255, 255, 255, 0.12);
}
/* Responsive – Mobile */
@media (max-width: 768px) {
.custom-footer {
flex-direction: column;
text-align: center;
}
.custom-footer .footer-section {
align-items: center;
}
}